html {
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

*, :after, :before {
  font-family: inherit;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: inherit;
  border: 0 solid;
  overflow-wrap: break-word;
}

/* ------------------------------------------------
 	color     
  ---------------------------------------------- */
:root {
  --hiraoka_common: #FFE202;
  --hiraoka_common-sub: #FFFDE9;
  --hiraoka_common-accent: #1E90FF;
  --hiraoka_common-base: #5C85A7;
  --hiraoka_common-base-light: #EEF2F5;
  --hiraoka_chori: #22BDC6;
  --hiraoka_chori-sub: #DEF5F7;
  --hiraoka_eiyoshi: #F09400;
  --hiraoka_eiyoshi-sub: #FEF6E9;
  --hiraoka_kaigo-fukushi: #44B034;
  --hiraoka_kaigo-fukushi-sub: #EFF9ED;
  --text-color: #333;
  --border-color: #ccc;
  --white-color: #fff;
}

.is-color-border-common {
  border-bottom-color: var(--hiraoka_common);
}

.is-color-bg-common {
  background-color: var(--hiraoka_common-sub);
}

.is-color-border-chori {
  border-bottom-color: var(--hiraoka_chori);
}

.is-color-bg-chori {
  background-color: var(--hiraoka_chori-sub);
}

.is-color-border-eiyoshi {
  border-bottom-color: var(--hiraoka_eiyoshi);
}

.is-color-bg-eiyoshi {
  background-color: var(--hiraoka_eiyoshi-sub);
}

.is-color-border-kaigo-fukushi {
  border-bottom-color: var(--hiraoka_kaigo-fukushi);
}

.is-color-bg-kaigo-fukushi {
  background-color: var(--hiraoka_kaigo-fukushi-sub);
}

@keyframes showAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showDownAnime {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutUp {
  0% {
    top: 0;
  }
  50% {
    top: 0vh;
  }
  100% {
    top: -100vh;
  }
}
/* ------------------------------------------------
 	base     
  ---------------------------------------------- */
body {
  position: relative;
  font-family: "Noto Sans JP", serif;
  -webkit-text-size-adjust: 100%;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

img {
  -webkit-touch-callout: none;
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0 auto;
}

.is-phone-link {
  text-decoration: none;
  cursor: default;
}
.is-phone-link:hover {
  text-decoration: none;
}

.is-hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-hidden-sp {
    display: block !important;
  }
}

.is-hidden-tablet {
  display: block;
}
@media screen and (min-width: 768px) {
  .is-hidden-tablet {
    display: none !important;
  }
}

.is-hidden-pc {
  display: block;
}
@media screen and (min-width: 1080px) {
  .is-hidden-pc {
    display: none !important;
  }
}

.is-visible-pc {
  display: none;
}
@media screen and (min-width: 1080px) {
  .is-visible-pc {
    display: block !important;
  }
}

.hiraoka-common .gnav__headline {
  border-bottom-color: var(--hiraoka_common);
}
.hiraoka-common .is-button-open-campus .button__link {
  background-color: var(--hiraoka_common-accent);
}
.hiraoka-common .header-menu-button {
  background-color: var(--hiraoka_common);
}
.hiraoka-common .card__date {
  color: var(--hiraoka_common-accent);
}
.hiraoka-common .header-menu-button__icon-1,
.hiraoka-common .header-menu-button__icon-2,
.hiraoka-common .header-menu-button__icon-3 {
  background-color: var(--text-color);
}
.hiraoka-common .heading-open-campus,
.hiraoka-common .heading-blog,
.hiraoka-common .page-header {
  border-left-color: var(--hiraoka_common);
}
@media screen and (min-width: 1080px) {
  .hiraoka-common .gnav__link:hover span::after,
  .hiraoka-common .gnav__item.is-current .gnav__link span::after {
    background-color: var(--hiraoka_common);
  }
}
.hiraoka-common .button__link {
  background-color: var(--hiraoka_common-base);
}
.hiraoka-common .entry-content h2::after {
  box-shadow: 0px 8px 0px 0px var(--hiraoka_common);
}
.hiraoka-common .entry-content h3::after {
  background-color: var(--hiraoka_common);
}
.hiraoka-common .entry-content h4 {
  color: var(--hiraoka_common-base);
  background-color: var(--hiraoka_common);
}
.hiraoka-common .entry-content h5 {
  border-color: var(--hiraoka_common);
}
.hiraoka-common .entry-content .wp-block-button__link {
  background-color: var(--hiraoka_common-accent);
}
.hiraoka-common .entry-content table th {
  background-color: var(--hiraoka_common-base-light);
}
.hiraoka-common .cs-block-anchor-nav__item a {
  border-right-color: var(--hiraoka_common);
}
.hiraoka-common .cs-block-label-text__label,
.hiraoka-common .cs-block-label,
.hiraoka-common .cs-block-label-image__label,
.hiraoka-common .open-campus__headline,
.hiraoka-common .open-campus__category {
  color: var(--hiraoka_common-base) !important;
  background-color: var(--hiraoka_common);
}
.hiraoka-common .cs-block-contents-menu__headline {
  border-bottom-color: var(--hiraoka_common);
}
.hiraoka-common .heading-2::after {
  box-shadow: 0px 8px 0px 0px var(--hiraoka_common);
}
.hiraoka-common .heading-3::after {
  background-color: var(--hiraoka_common);
}
.hiraoka-common .news-list__category,
.hiraoka-common .entry-content-meta__category {
  color: var(--text-color) !important;
  background-color: var(--hiraoka_common);
}
.hiraoka-common .pagination span, .hiraoka-common .pagination a {
  background-color: var(--hiraoka_common-sub);
}
.hiraoka-common .pagination .current {
  background-color: var(--hiraoka_common);
}

.hiraoka-eiyoshi .gnav__headline {
  border-bottom-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .header-menu-button,
.hiraoka-eiyoshi .is-button-open-campus .button__link,
.hiraoka-eiyoshi .button__link,
.hiraoka-eiyoshi .hero-news__tags span,
.hiraoka-eiyoshi .information__item.is-item-guide,
.hiraoka-eiyoshi .card__body-category,
.hiraoka-eiyoshi .news-list__category,
.hiraoka-eiyoshi .entry-content-meta__category {
  background-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .heading-open-campus,
.hiraoka-eiyoshi .heading-blog,
.hiraoka-eiyoshi .heading-department,
.hiraoka-eiyoshi .page-header {
  border-left-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .card__date,
.hiraoka-eiyoshi .department__name {
  color: var(--hiraoka_eiyoshi);
}
@media screen and (min-width: 1080px) {
  .hiraoka-eiyoshi .gnav__link:hover span::after,
  .hiraoka-eiyoshi .gnav__item.is-current .gnav__link span::after {
    background-color: var(--hiraoka_eiyoshi);
  }
  .hiraoka-eiyoshi .gnav__sub-list-headline {
    color: var(--hiraoka_eiyoshi);
  }
}
.hiraoka-eiyoshi .hero-slider__button-next::before {
  border-top-color: var(--hiraoka_eiyoshi);
  border-right-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .hero-slider__button-prev::before {
  border-top-color: var(--hiraoka_eiyoshi);
  border-left-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .entry-content h2::after {
  box-shadow: 0px 8px 0px 0px var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .entry-content h3::after {
  background-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .entry-content h4 {
  background-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .entry-content h5 {
  border-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .entry-content .wp-block-button__link {
  background-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .entry-content table th {
  background-color: var(--hiraoka_eiyoshi-sub);
}
.hiraoka-eiyoshi .cs-block-anchor-nav__item a {
  border-right-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .cs-block-label-text__label,
.hiraoka-eiyoshi .cs-block-label,
.hiraoka-eiyoshi .cs-block-label-image__label,
.hiraoka-eiyoshi .open-campus__headline,
.hiraoka-eiyoshi .open-campus__category {
  background-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .cs-block-contents-menu__headline {
  border-bottom-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .heading-2::after {
  box-shadow: 0px 8px 0px 0px var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .heading-3::after {
  background-color: var(--hiraoka_eiyoshi);
}
.hiraoka-eiyoshi .pagination span, .hiraoka-eiyoshi .pagination a {
  background-color: var(--hiraoka_eiyoshi-sub);
}
.hiraoka-eiyoshi .pagination .current {
  background-color: var(--hiraoka_eiyoshi);
}

.hiraoka-chori .gnav__headline {
  border-bottom-color: var(--hiraoka_chori);
}
.hiraoka-chori .header-menu-button,
.hiraoka-chori .is-button-open-campus .button__link,
.hiraoka-chori .button__link,
.hiraoka-chori .hero-news__tags span,
.hiraoka-chori .information__item.is-item-guide,
.hiraoka-chori .card__body-category,
.hiraoka-chori .news-list__category,
.hiraoka-chori .entry-content-meta__category {
  background-color: var(--hiraoka_chori);
}
.hiraoka-chori .heading-open-campus,
.hiraoka-chori .heading-blog,
.hiraoka-chori .heading-department,
.hiraoka-chori .page-header {
  border-left-color: var(--hiraoka_chori);
}
.hiraoka-chori .card__date,
.hiraoka-chori .department__name {
  color: var(--hiraoka_chori);
}
@media screen and (min-width: 1080px) {
  .hiraoka-chori .gnav__link:hover span::after,
  .hiraoka-chori .gnav__item.is-current .gnav__link span::after {
    background-color: var(--hiraoka_chori);
  }
  .hiraoka-chori .gnav__sub-list-headline {
    color: var(--hiraoka_chori);
  }
}
.hiraoka-chori .hero-slider__button-next::before {
  border-top-color: var(--hiraoka_chori);
  border-right-color: var(--hiraoka_chori);
}
.hiraoka-chori .hero-slider__button-prev::before {
  border-top-color: var(--hiraoka_chori);
  border-left-color: var(--hiraoka_chori);
}
.hiraoka-chori .entry-content h2::after {
  box-shadow: 0px 8px 0px 0px var(--hiraoka_chori);
}
.hiraoka-chori .entry-content h3::after {
  background-color: var(--hiraoka_chori);
}
.hiraoka-chori .entry-content h4 {
  background-color: var(--hiraoka_chori);
}
.hiraoka-chori .entry-content h5 {
  border-color: var(--hiraoka_chori);
}
.hiraoka-chori .entry-content .wp-block-button__link {
  background-color: var(--hiraoka_chori);
}
.hiraoka-chori .entry-content table th {
  background-color: var(--hiraoka_chori-sub);
}
.hiraoka-chori .cs-block-anchor-nav__item a {
  border-right-color: var(--hiraoka_chori);
}
.hiraoka-chori .cs-block-label-text__label,
.hiraoka-chori .cs-block-label,
.hiraoka-chori .cs-block-label-image__label,
.hiraoka-chori .open-campus__headline,
.hiraoka-chori .open-campus__category {
  background-color: var(--hiraoka_chori);
}
.hiraoka-chori .cs-block-contents-menu__headline {
  border-bottom-color: var(--hiraoka_chori);
}
.hiraoka-chori .heading-2::after {
  box-shadow: 0px 8px 0px 0px var(--hiraoka_chori);
}
.hiraoka-chori .heading-3::after {
  background-color: var(--hiraoka_chori);
}
.hiraoka-chori .pagination span, .hiraoka-chori .pagination a {
  background-color: var(--hiraoka_chori-sub);
}
.hiraoka-chori .pagination .current {
  background-color: var(--hiraoka_chori);
}

.hiraoka-kaigo-fukushi .gnav__headline {
  border-bottom-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .header-menu-button,
.hiraoka-kaigo-fukushi .is-button-open-campus .button__link,
.hiraoka-kaigo-fukushi .button__link,
.hiraoka-kaigo-fukushi .hero-news__tags span,
.hiraoka-kaigo-fukushi .information__item.is-item-guide,
.hiraoka-kaigo-fukushi .card__body-category,
.hiraoka-kaigo-fukushi .news-list__category,
.hiraoka-kaigo-fukushi .entry-content-meta__category {
  background-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .heading-open-campus,
.hiraoka-kaigo-fukushi .heading-blog,
.hiraoka-kaigo-fukushi .heading-department,
.hiraoka-kaigo-fukushi .page-header {
  border-left-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .card__date,
.hiraoka-kaigo-fukushi .department__name {
  color: var(--hiraoka_kaigo-fukushi);
}
@media screen and (min-width: 1080px) {
  .hiraoka-kaigo-fukushi .gnav__link:hover span::after,
  .hiraoka-kaigo-fukushi .gnav__item.is-current .gnav__link span::after {
    background-color: var(--hiraoka_kaigo-fukushi);
  }
  .hiraoka-kaigo-fukushi .gnav__sub-list-headline {
    color: var(--hiraoka_kaigo-fukushi);
  }
}
.hiraoka-kaigo-fukushi .hero-slider__button-next::before {
  border-top-color: var(--hiraoka_kaigo-fukushi);
  border-right-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .hero-slider__button-prev::before {
  border-top-color: var(--hiraoka_kaigo-fukushi);
  border-left-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .entry-content h2::after {
  box-shadow: 0px 8px 0px 0px var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .entry-content h3::after {
  background-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .entry-content h4 {
  background-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .entry-content h5 {
  border-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .entry-content .wp-block-button__link {
  background-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .entry-content table th {
  background-color: var(--hiraoka_kaigo-fukushi-sub);
}
.hiraoka-kaigo-fukushi .cs-block-anchor-nav__item a {
  border-right-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .cs-block-label-text__label,
.hiraoka-kaigo-fukushi .cs-block-label,
.hiraoka-kaigo-fukushi .cs-block-label-image__label,
.hiraoka-kaigo-fukushi .open-campus__headline,
.hiraoka-kaigo-fukushi .open-campus__category {
  background-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .cs-block-contents-menu__headline {
  border-bottom-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .heading-2::after {
  box-shadow: 0px 8px 0px 0px var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .heading-3::after {
  background-color: var(--hiraoka_kaigo-fukushi);
}
.hiraoka-kaigo-fukushi .pagination span, .hiraoka-kaigo-fukushi .pagination a {
  background-color: var(--hiraoka_kaigo-fukushi-sub);
}
.hiraoka-kaigo-fukushi .pagination .current {
  background-color: var(--hiraoka_kaigo-fukushi);
}

.is-category-common .news-list__tags span {
  background-color: var(--hiraoka_common);
}

.is-category-chori .news-list__tags span {
  background-color: var(--hiraoka_chori);
}

.is-category-kaigo-fukushi .news-list__tags span {
  background-color: var(--hiraoka_kaigo-fukushi);
}

.is-category-eiyoshi .news-list__tags span {
  background-color: var(--hiraoka_eiyoshi);
}

/* header
-------------------------*/
.l-header {
  position: fixed;
  top: 11px;
  left: 11px;
  width: calc(100% - 22px);
  max-height: calc(100vh - 16px);
  max-height: calc(100svh - 16px);
  border-radius: 44px;
  z-index: 90;
}
@media screen and (min-width: 1080px) {
  .l-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.header__logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  display: flex;
  gap: min(2.8205128205vw, 11px);
  align-items: center;
  font-size: min(3.5897435897vw, 14px);
  font-weight: 400;
  text-decoration: none;
}
.header__logo:hover {
  text-decoration: none;
}
.header__logo img {
  width: 50px;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 72px;
  }
}
@media screen and (min-width: 768px) {
  .header__logo {
    top: 16px;
    transform: translateY(0);
    transition: 300ms opacity;
  }
  .header__logo:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1080px) {
  .header__logo {
    top: 0;
    font-size: 24px;
    position: relative;
    left: 0;
  }
}
.header__inner {
  background-color: var(--white-color);
  border-radius: 44px;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .header__inner {
    position: absolute;
    top: 73px;
    width: calc(100% - 80px);
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 64px;
    height: 88px;
    justify-content: space-between;
    background-color: transparent;
    z-index: 30;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
    overflow: inherit;
  }
}

.header__sp-bar {
  position: fixed;
  top: 11px;
  left: 11px;
  padding: 16px 16px;
  width: calc(100% - 22px);
  height: 88px;
  justify-content: space-between;
  border-radius: 44px;
  background-color: var(--white-color);
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  z-index: 95;
  overflow: hidden;
}
@media screen and (min-width: 1080px) {
  .header__sp-bar {
    position: absolute;
    top: 0;
    left: 64px;
    box-shadow: none;
    border-radius: 0;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: inherit;
    border-radius: 0 !important;
  }
}

.header__body {
  padding: 88px 16px 0;
  height: 100%;
  max-height: calc(100vh - 32px);
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  border-radius: 0 0 44px 44px;
}
@media screen and (min-width: 1080px) {
  .header__body {
    display: block;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-height: inherit;
    overflow: inherit;
  }
}

.header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 8px;
  margin-bottom: 32px;
  width: 100%;
  display: none;
}
@media screen and (min-width: 1080px) {
  .header__nav {
    position: absolute;
    top: -73px;
    left: 0;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-color: var(--white-color);
    display: flex !important;
  }
}
.header__nav-item {
  display: block;
  padding: 8px 0;
  text-align: center;
  width: calc(50% - 4px);
  border-bottom-width: 4px;
  border-bottom-style: solid;
  font-size: 12px;
}
@media screen and (min-width: 1080px) {
  .header__nav-item {
    font-size: 14px;
    width: calc(25% - 4px);
  }
}
.header__nav-item:hover {
  text-decoration: none;
}
@media screen and (min-width: 1080px) {
  .header__nav-item:hover {
    transition: background-color 300ms;
  }
}
.header__nav .is-item-common {
  border-bottom-color: var(--hiraoka_common);
}
.header__nav .is-item-common.is-current {
  background-color: var(--hiraoka_common-sub);
}
@media screen and (min-width: 1080px) {
  .header__nav .is-item-common:hover {
    background-color: var(--hiraoka_common-sub);
  }
}
.header__nav .is-item-chori {
  border-bottom-color: var(--hiraoka_chori);
}
.header__nav .is-item-chori.is-current {
  background-color: var(--hiraoka_chori-sub);
}
@media screen and (min-width: 1080px) {
  .header__nav .is-item-chori:hover {
    background-color: var(--hiraoka_chori-sub);
  }
}
.header__nav .is-item-eiyoshi {
  border-bottom-color: var(--hiraoka_eiyoshi);
}
.header__nav .is-item-eiyoshi.is-current {
  background-color: var(--hiraoka_eiyoshi-sub);
}
@media screen and (min-width: 1080px) {
  .header__nav .is-item-eiyoshi:hover {
    background-color: var(--hiraoka_eiyoshi-sub);
  }
}
.header__nav .is-item-kaigo-fukushi {
  border-bottom-color: var(--hiraoka_kaigo-fukushi);
}
.header__nav .is-item-kaigo-fukushi.is-current {
  background-color: var(--hiraoka_kaigo-fukushi-sub);
}
@media screen and (min-width: 1080px) {
  .header__nav .is-item-kaigo-fukushi:hover {
    background-color: var(--hiraoka_kaigo-fukushi-sub);
  }
}

.is-header-sp-open .gnav {
  display: block;
  animation: showAnime 500ms;
  border-radius: 44px;
}
.is-header-sp-open .header__sp-bar {
  box-shadow: none;
  border-radius: 44px 44px 0 0;
}
.is-header-sp-open .header__nav {
  display: flex;
  animation: showAnime 500ms;
  border-radius: 44px;
}
.is-header-sp-open .header__inner {
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
}

.is-header-pc-open .header__inner {
  box-shadow: none;
}
.is-header-pc-open .gnav__contents::before {
  height: 100%;
  min-height: 88px;
  background-color: var(--white-color);
  transition: height 300ms;
}
.is-header-pc-open .gnav__contents.is-current::before {
  height: 100%;
  background-color: var(--white-color);
  transition: height 300ms;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2509803922);
}

.is-body-top .l-header {
  top: 27px;
  width: calc(100% - 54px);
  left: 27px;
}
@media screen and (min-width: 1080px) {
  .is-body-top .l-header {
    top: 0;
    left: 0;
    width: 100%;
  }
}
.is-body-top .header__sp-bar {
  width: calc(100% - 54px);
  top: 27px;
  left: 27px;
}
@media screen and (min-width: 1080px) {
  .is-body-top .header__sp-bar {
    top: 0;
    left: 64px;
    width: auto;
  }
}
@media screen and (min-width: 1080px) {
  .is-body-top .l-header.is-header-site {
    padding-top: 73px;
  }
  .is-body-top .l-header.is-header-site .header__inner {
    top: 116px;
    max-width: 1120px;
  }
}
.is-body-top .l-header.is-header-site .header__nav {
  top: -116px;
}

.l-container {
  max-width: 1200px;
  padding: 0 11px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1080px) {
  .l-container {
    box-sizing: content-box;
  }
}

.l-wrapper {
  width: 100%;
  overflow: hidden;
}

.l-main {
  display: block;
  padding: 115px 0 80px;
}
@media screen and (min-width: 1080px) {
  .l-main {
    padding: 200px 0 80px;
  }
}

.l-section {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .l-section.is-section-news {
    padding: 0 40px;
  }
}
.l-section.is-section-open-campus {
  padding: 64px 0;
  background-color: var(--hiraoka_common-base-light);
}
@media screen and (min-width: 1080px) {
  .l-section.is-section-open-campus .is-button-more {
    position: absolute;
    top: 80px;
    right: 40px;
  }
}
.l-section.is-section-blog {
  margin-bottom: 0;
}
@media screen and (min-width: 1080px) {
  .l-section.is-section-blog .is-button-more {
    position: absolute;
    top: 50px;
    right: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-section.is-section-information {
    margin-bottom: 144px;
  }
}

.section__inner {
  position: relative;
  padding: 0 11px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section__inner {
    padding: 0 40px;
    box-sizing: content-box;
  }
}

/* ------------------------------------------------
 	footer    
  ---------------------------------------------- */
.l-footer {
  background-color: var(--hiraoka_common-base);
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-bottom: 0;
  }
}

.footer__inner {
  padding: 32px 16px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 64px 16px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    padding: 64px 0;
  }
}
.footer__body {
  display: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__body {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
    justify-content: space-between;
  }
  .footer__body::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: var(--white-color);
    content: "";
  }
}
@media screen and (min-width: 1080px) {
  .footer__body {
    flex-wrap: nowrap;
  }
  .footer__body::before {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .footer__body {
    gap: 96px;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 32px);
}
.footer__container:last-child {
  border-right: none;
}
@media screen and (min-width: 1080px) {
  .footer__container:last-child::before {
    display: none;
  }
}
@media screen and (min-width: 1080px) {
  .footer__container {
    position: relative;
    width: auto;
  }
  .footer__container::before {
    position: absolute;
    top: 0;
    right: -24px;
    width: 1px;
    height: 100%;
    background-color: var(--white-color);
    content: "";
  }
}
@media screen and (min-width: 1200px) {
  .footer__container::before {
    right: -48px;
  }
}
.footer__headline {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom-width: 4px;
  border-bottom-style: solid;
}
.footer__headline a {
  color: var(--white-color);
}
.footer__headline.is-category-common {
  border-bottom-color: var(--hiraoka_common);
}
.footer__headline.is-category-chori {
  border-bottom-color: var(--hiraoka_chori);
}
.footer__headline.is-category-eiyoshi {
  border-bottom-color: var(--hiraoka_eiyoshi);
}
.footer__headline.is-category-kaigo-fukushi {
  border-bottom-color: var(--hiraoka_kaigo-fukushi);
}
.footer__copyright {
  text-align: center;
  color: var(--white-color);
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    text-align: left;
    font-size: 14px;
  }
}

.footer-nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px min(4.1025641026vw, 16px);
  justify-content: center;
  max-width: 358px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    max-width: inherit;
    justify-content: flex-start;
    margin: 0;
  }
}
.footer-nav__item {
  width: calc(50% - 8px);
  max-width: 171px;
}
@media screen and (min-width: 768px) {
  .footer-nav__item {
    max-width: inherit;
    width: auto;
  }
}
.footer-nav__item a {
  display: block;
  background-color: var(--white-color);
  color: var(--hiraoka_common-base);
  font-size: min(4.1025641026vw, 16px);
  line-height: 1;
  font-weight: 700;
  padding: 16px min(5.1282051282vw, 20px);
  border-radius: 32px;
  text-align: center;
}
.footer-nav__item a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .footer-nav__item a {
    padding: 16px 24px;
    transition: opacity 300ms;
  }
  .footer-nav__item a:hover {
    opacity: 0.7;
  }
}
.footer-nav__item.is-item-short {
  width: auto;
}
@media screen and (min-width: 375px) {
  .footer-nav__item.is-item-short {
    min-width: 135px;
  }
}
.footer-nav__item.is-item-short a {
  padding: 16px min(5.3846153846vw, 21px);
}
@media screen and (min-width: 768px) {
  .footer-nav__item.is-item-short a {
    padding: 16px 24px;
  }
}
.footer-nav__item.is-item-long {
  width: auto;
  max-width: inherit;
}
.footer-nav__item.is-item-long a {
  padding: 16px min(5.1282051282vw, 20px);
}
@media screen and (min-width: 375px) {
  .footer-nav__item.is-item-long a {
    padding: 16px 24px;
  }
}

.footer-first-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-first-list a {
  color: var(--white-color);
}
.footer-first-list__item {
  font-size: 14px;
  font-weight: 700;
}

.footer-second-list a {
  position: relative;
  color: var(--white-color);
  padding-left: 24px;
}
.footer-second-list a::before {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 8px;
  height: 1px;
  background-color: var(--white-color);
  content: "";
}
.footer-second-list__item {
  font-size: 14px;
  font-weight: 400;
}

.footer-third-list {
  margin-bottom: 16px;
}
.footer-third-list a {
  position: relative;
  color: var(--white-color);
  padding-left: 44px;
}
.footer-third-list a::before {
  position: absolute;
  top: 50%;
  left: 26px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
  background-color: transparent;
  transform: rotate(45deg);
  content: "";
}

.footer-bottom-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .footer-bottom-list {
    flex-direction: row;
  }
}
.footer-bottom-list a {
  color: var(--white-color);
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .footer-bottom-list a:hover {
    text-decoration: none;
  }
}

.header-menu-button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
@media screen and (min-width: 1080px) {
  .header-menu-button {
    display: none;
  }
}
.header-menu-button__icon-1, .header-menu-button__icon-2, .header-menu-button__icon-3 {
  position: relative;
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--white-color);
  transition: all 300ms;
}
.header-menu-button.is-menu-open .header-menu-button__icon-1 {
  top: 8px;
  transform: rotate(26deg);
}
.header-menu-button.is-menu-open .header-menu-button__icon-2 {
  opacity: 0;
}
.header-menu-button.is-menu-open .header-menu-button__icon-3 {
  top: -8px;
  transform: rotate(-26deg);
}

/* gnav
-------------------------*/
.gnav {
  display: none;
  flex-direction: column;
  gap: 16px;
  display: none;
  padding-bottom: 16px;
}
@media screen and (min-width: 1080px) {
  .gnav {
    display: flex !important;
    height: 100%;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    padding-bottom: 0;
  }
}
.gnav__headline {
  display: block;
  color: #999;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
.gnav__headline:hover {
  text-decoration: none;
}
@media screen and (min-width: 1080px) {
  .gnav__list {
    display: flex;
    justify-content: flex-end;
  }
}
.gnav__item {
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .gnav__item {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .gnav__item.is-current .gnav__link span:after {
    width: 100%;
  }
}
.gnav__link {
  display: none;
}
@media screen and (min-width: 1080px) {
  .gnav__link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 24px;
    width: 100%;
    height: 88px;
    font-size: 16px;
    z-index: 20;
  }
  .gnav__link span {
    position: relative;
    display: inline-block;
  }
  .gnav__link span::after {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    width: 24px;
    height: 4px;
    background-color: var(--border-color);
    transition-property: all;
    transition-duration: 300ms;
  }
  .gnav__link:hover {
    text-decoration: none;
  }
  .gnav__link:hover span::after {
    width: 100%;
  }
}
.gnav__sub-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1080px) {
  .gnav__sub-list-wrapper {
    flex-direction: row;
    gap: 0 16px;
  }
}
@media screen and (min-width: 1080px) {
  .gnav__sub-list-container {
    width: 100%;
  }
}
.gnav__sub-list-container + .gnav__sub-list-container {
  margin-top: 24px;
}
@media screen and (min-width: 1080px) {
  .gnav__sub-list-container + .gnav__sub-list-container {
    margin-top: 0;
  }
}
.gnav__sub-list-headline {
  position: relative;
  display: block;
  font-size: 18px;
  padding: 8px 0 8px 24px;
  line-height: 1;
}
.gnav__sub-list-headline:hover {
  text-decoration: none;
}
@media screen and (min-width: 1080px) {
  .gnav__sub-list-headline:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1080px) {
  .gnav__sub-list-headline {
    font-size: 16px;
    font-weight: 700;
    padding: 0;
    margin-bottom: 16px;
  }
}
.gnav__sub-list-headline::before {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 8px;
  height: 1px;
  background-color: var(--text-color);
  content: "";
}
@media screen and (min-width: 1080px) {
  .gnav__sub-list-headline::before {
    display: none;
  }
}
.gnav__sub-list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1080px) {
  .gnav__sub-list {
    flex-direction: row;
    gap: 16px 32px;
    flex-wrap: wrap;
  }
}
.gnav__sub-link {
  position: relative;
  display: block;
  font-size: 18px;
  padding: 8px 0 8px 24px;
  line-height: 1;
}
.gnav__sub-link:hover {
  text-decoration: none;
}
@media screen and (min-width: 1080px) {
  .gnav__sub-link:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1080px) {
  .gnav__sub-link {
    font-size: 16px;
    padding-left: 12px;
  }
}
.gnav__sub-link::before {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 8px;
  height: 1px;
  background-color: var(--text-color);
  content: "";
}
@media screen and (min-width: 1080px) {
  .gnav__sub-link::before {
    left: 0;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
    background-color: transparent;
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 1080px) {
  .gnav__contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition-property: all;
    transition-duration: 300ms;
    padding: 32px 64px 48px;
    border-radius: 0 0 44px 44px;
    z-index: -1;
    padding: 0;
  }
  .gnav__contents-inner {
    display: none;
    position: relative;
    pointer-events: none;
    padding: 120px 64px 48px;
  }
  .gnav__contents.is-current {
    z-index: 10;
  }
  .gnav__contents.is-current .gnav__contents-inner {
    display: block;
    animation: showAnime 400ms;
    pointer-events: all;
  }
  .gnav__contents::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    background-color: var(--white-color);
    content: "";
    border-radius: 44px;
  }
}

/* hero
-------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  margin-top: -104px;
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1080px) {
  .hero {
    height: auto;
    height: 759px;
    margin-bottom: 64px;
    margin-top: -200px;
    display: block;
  }
}
.hero__catch {
  position: absolute;
  font-size: min(8.2051282051vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white-color);
  bottom: min(103.5897435897vw, 404px);
  margin-left: 16px;
}
@media screen and (min-width: 768px) {
  .hero__catch {
    font-size: min(5.625vw, 72px);
    bottom: min(8.2051282051vw, 32px);
    font-weight: 400;
  }
}
@media screen and (min-width: 1080px) {
  .hero__catch {
    margin-left: 40px;
  }
}
.hero__video {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  width: calc(100% - 22px);
  height: 100vh;
  padding-bottom: 56.25%;
}
@media screen and (min-width: 1080px) {
  .hero__video {
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: 759px;
  }
}
.hero__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__image {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  width: calc(100% - 22px);
  height: 100vh;
}
@media screen and (min-width: 1080px) {
  .hero__image {
    width: auto;
    height: auto;
    border-radius: 64px;
    height: 760px;
  }
}
.hero__image-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero.is-hero-site {
  margin-bottom: 80px;
}
@media screen and (min-width: 1080px) {
  .hero.is-hero-site {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: inherit;
    height: auto;
  }
  .hero.is-hero-site .hero__catch {
    top: 355px;
    margin-left: 40px;
  }
}

.hero-slider {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 1080px) {
  .hero-slider {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .hero-slider__item {
    width: 360px;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .hero-slider__item a {
    transition: opacity 300ms;
  }
  .hero-slider__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .hero-slider__item .card {
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .hero-slider__item .card__inner {
    height: 100%;
  }
}
.hero-slider__button-next {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white-color);
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .hero-slider__button-next {
    right: inherit;
    left: 50%;
    margin-left: 23%;
  }
}
@media screen and (min-width: 1080px) {
  .hero-slider__button-next {
    margin-left: 36%;
  }
}
.hero-slider__button-next::before {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-top-style: solid;
  border-top-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  transform: rotate(45deg);
  content: "";
}
.hero-slider__button-prev {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--white-color);
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .hero-slider__button-prev {
    left: 50%;
    margin-left: -27%;
  }
}
@media screen and (min-width: 1080px) {
  .hero-slider__button-prev {
    margin-left: -39%;
  }
}
.hero-slider__button-prev::before {
  position: absolute;
  top: 12px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-top-style: solid;
  border-top-width: 1px;
  border-left-style: solid;
  border-left-width: 1px;
  transform: rotate(-45deg);
  content: "";
}

.hero-news {
  width: 100%;
  padding: 0 11px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .hero-news {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1080px) {
  .hero-news {
    position: absolute;
    top: 580px;
    height: 180px;
    background-color: var(--white-color);
    flex-direction: row;
    padding: 46px 20px 46px 20px;
    align-items: center;
    gap: 20px;
    border-radius: 0 64px 0 0;
    width: min(62.265625vw, 797px);
  }
}
@media screen and (min-width: 1200px) {
  .hero-news {
    padding: 46px 46px 46px 0;
  }
}
.hero-news__headline {
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hiraoka_common-base);
  border-bottom: 4px solid var(--hiraoka_common-base);
}
@media screen and (min-width: 1080px) {
  .hero-news__headline {
    border-bottom: none;
    padding-bottom: 0;
    padding: 23px 20px 23px 0;
    border-right: 4px solid var(--hiraoka_common-base);
  }
}
.hero-news__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-news__item:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .hero-news__item {
    transition: opacity 300ms;
  }
  .hero-news__item:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1080px) {
  .hero-news__item {
    gap: 16px 0;
    width: calc(100% - 273px);
    flex-shrink: 0;
  }
}
.hero-news__date {
  font-size: 14px;
  line-height: 1;
}
.hero-news__text {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 1080px) {
  .hero-news__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1080px) {
  .hero-news__header {
    display: flex;
    align-items: center;
    gap: 0 16px;
  }
}
.hero-news__tags {
  display: none;
}
@media screen and (min-width: 1080px) {
  .hero-news__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .hero-news__tags span {
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 16px;
    color: var(--white-color);
  }
}
@media screen and (min-width: 1080px) {
  .hero-news .button {
    width: 110px;
    flex-shrink: 0;
  }
}
.hero-news .button__link {
  padding: 8px 16px;
}
.hero-news .button__text {
  white-space: nowrap;
}
.hero-news .button__icon-after {
  margin-left: 8px;
}
@media screen and (min-width: 1080px) {
  .hero-news__radius {
    position: absolute;
    top: -46px;
    left: 0;
    width: 46px;
    height: 46px;
  }
  .hero-news__radius::before {
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0px;
    left: 46px;
    content: "";
    overflow: hidden;
    background: transparent;
    border-radius: 50%;
    box-shadow: -46px 46px 0 0 var(--white-color);
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1080px) {
  .hero-news__radius-2 {
    position: absolute;
    bottom: 0;
    right: -46px;
    width: 46px;
    height: 46px;
  }
  .hero-news__radius-2::before {
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0px;
    left: 46px;
    content: "";
    overflow: hidden;
    background: transparent;
    border-radius: 50%;
    box-shadow: -46px 46px 0 0 var(--white-color);
    transform: translate(-50%, -50%);
  }
}

@media screen and (min-width: 768px) {
  .news {
    position: relative;
    display: flex;
    width: 100%;
    gap: min(2.5vw, 32px);
    max-width: 1200px;
    margin: 0 auto;
  }
}
.news__headline {
  background-color: var(--hiraoka_common-base);
  border-radius: 32px;
  padding: 16px 32px;
  line-height: 1.3;
  font-size: 32px;
  font-weight: 700;
  color: var(--white-color);
  margin: 0 11px 16px;
}
@media screen and (min-width: 768px) {
  .news__headline {
    width: 285px;
    flex-shrink: 0;
    padding: 32px;
    margin: 0;
    min-height: 180px;
  }
}
@media screen and (min-width: 768px) {
  .news__body {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .news .button {
    position: absolute;
    bottom: 32px;
    left: min(2.5vw, 32px);
    width: 221px;
  }
}
@media screen and (min-width: 768px) {
  .news .button__link {
    background-color: var(--white-color);
  }
}
@media screen and (min-width: 768px) {
  .news .button__text {
    color: var(--hiraoka_common-base);
  }
}
@media screen and (min-width: 768px) {
  .news .button__icon-after img {
    visibility: hidden;
  }
}

.news-list {
  margin-bottom: 16px;
  padding: 0 11px;
}
@media screen and (min-width: 768px) {
  .news-list {
    padding: 0;
  }
}
.news-list li {
  border-bottom: 1px solid #eee;
}
.news-list li:last-child {
  border-bottom: none;
}
.news-list a {
  position: relative;
  display: block;
  padding: 16px 48px 16px 0;
}
@media screen and (min-width: 768px) {
  .news-list a {
    transition: opacity 300ms;
    padding: 16px 40px 16px 0;
  }
}
.news-list a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .news-list a:hover {
    opacity: 0.7;
  }
  .news-list a:hover::after {
    transform: translateX(8px);
  }
}
.news-list a::after {
  position: absolute;
  right: 11px;
  top: 50%;
  width: 32px;
  height: 32px;
  background-image: url(../images/common/icon_link_01.svg);
  background-repeat: no-repeat;
  content: "";
  background-size: cover;
  background-position: left top;
}
@media screen and (min-width: 768px) {
  .news-list a::after {
    transition: transform 300ms;
  }
}
.news-list__header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .news-list__header {
    margin-right: 0;
  }
}
.news-list__date {
  font-size: 14px;
}
.news-list__tags {
  display: flex;
  gap: min(2.0512820513vw, 8px);
  flex-wrap: wrap;
}
.news-list__tags span {
  border-radius: 32px;
  font-size: min(3.5897435897vw, 14px);
  font-weight: 700;
  line-height: 1;
  padding: 8px min(4.1025641026vw, 16px);
  color: var(--white-color);
}
.news-list__headline {
  font-size: 18px;
  font-weight: 700;
}
.news-list__category {
  border-radius: 32px;
  font-size: min(3.5897435897vw, 14px);
  font-weight: 700;
  line-height: 1;
  padding: 8px min(4.1025641026vw, 16px);
  color: var(--white-color);
}
.news-list__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}
.news-list__icon {
  border-radius: 32px;
  font-size: min(3.5897435897vw, 14px);
  font-weight: 700;
  line-height: 1;
  padding: 8px min(4.1025641026vw, 16px);
  color: var(--white-color);
}
.news-list__icon.is-icon-common {
  color: var(--text-color);
  background-color: var(--hiraoka_common);
}
.news-list__icon.is-icon-chori {
  background-color: var(--hiraoka_chori);
}
.news-list__icon.is-icon-eiyoshi {
  background-color: var(--hiraoka_eiyoshi);
}
.news-list__icon.is-icon-kaigo-fukushi {
  background-color: var(--hiraoka_kaigo-fukushi);
}
.news-list.is-archive {
  margin-bottom: 64px;
}
.news-list.is-archive li {
  border-bottom: 1px solid var(--border-color);
}
.news-list.is-archive a {
  padding: 16px 0 16px;
}
.news-list.is-archive a::after {
  display: none;
}

.site-banner {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .site-banner {
    margin-bottom: 64px;
    flex-direction: row;
  }
}
.site-banner__item {
  display: block;
  position: relative;
}
.site-banner__item:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .site-banner__item:hover::before {
    opacity: 0;
  }
}
.site-banner__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
@media screen and (min-width: 768px) {
  .site-banner__item::before {
    transition: opacity 300ms;
  }
}
.site-banner__item.is-banner-chori::before {
  background-color: rgba(34, 189, 198, 0.2);
}
@media screen and (min-width: 768px) {
  .site-banner__item.is-banner-chori:hover .site-banner__body {
    background-color: rgba(34, 189, 198, 0.5);
  }
}
.site-banner__item.is-banner-eiyoshi::before {
  background-color: rgba(240, 148, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .site-banner__item.is-banner-eiyoshi:hover .site-banner__body {
    background-color: rgba(240, 148, 0, 0.5);
  }
}
.site-banner__item.is-banner-kaigo-fukushi::before {
  background-color: rgba(68, 176, 52, 0.2);
}
@media screen and (min-width: 768px) {
  .site-banner__item.is-banner-kaigo-fukushi:hover .site-banner__body {
    background-color: rgba(68, 176, 52, 0.5);
  }
}
.site-banner__body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .site-banner__body {
    padding: 16px 24px;
    border-radius: 40px;
    background-color: transparent;
    transition: background-color 300ms;
  }
}
.site-banner__school {
  font-size: min(3.5897435897vw, 14px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .site-banner__school {
    font-size: min(1.09375vw, 14px);
  }
}
.site-banner__name {
  font-size: min(6.1538461538vw, 24px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .site-banner__name {
    font-size: min(1.875vw, 24px);
  }
}

.heading-about {
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  color: var(--hiraoka_common-base);
  margin-bottom: 32px;
}
.heading-about__english {
  font-size: 6.6666666667vw;
  line-height: 1;
  color: var(--hiraoka_common);
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .heading-about__english {
    font-size: min(6.25vw, 80px);
  }
}
@media screen and (min-width: 1080px) {
  .heading-about__english {
    font-size: 80px;
  }
}
.heading-about__text-sub {
  font-size: min(6.1538461538vw, 24px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--hiraoka_common-base);
}
@media screen and (min-width: 768px) {
  .heading-about__text-sub {
    font-size: min(2.5vw, 32px);
    margin-top: min(-1.25vw, -16px);
  }
}
@media screen and (min-width: 1080px) {
  .heading-about__text-sub {
    font-size: 32px;
    margin-top: -32px;
  }
}

.heading-open-campus {
  margin-left: 40px;
  margin-bottom: 48px;
  padding: 16px 0 16px 16px;
  border-left-width: 16px;
  border-left-style: solid;
}
@media screen and (min-width: 768px) {
  .heading-open-campus {
    margin-left: 0;
  }
}
.heading-open-campus__english {
  line-height: 1;
  font-size: min(8.2051282051vw, 32px);
  font-weight: 700;
  color: var(--hiraoka_common-base);
  margin-bottom: 16px;
}
.heading-open-campus__text-sub {
  font-weight: 400;
  font-size: min(12.3076923077vw, 48px);
  line-height: 1;
  color: var(--hiraoka_common-base);
}

.heading-blog {
  margin-bottom: 24px;
  padding: 4px 0 4px 16px;
  border-left-width: 8px;
  border-left-style: solid;
}
@media screen and (min-width: 768px) {
  .heading-blog {
    border-left-width: 16px;
    margin-bottom: 64px;
  }
}
.heading-blog__english {
  line-height: 1;
  font-size: 48px;
  color: var(--hiraoka_common-base);
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .heading-blog__english {
    font-size: 32px;
    font-weight: 700;
  }
}
.heading-blog__text-sub {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--hiraoka_common-base);
}
@media screen and (min-width: 768px) {
  .heading-blog__text-sub {
    font-size: 48px;
  }
}

.heading-department {
  margin-left: 11px;
  margin-bottom: 24px;
  padding: 16px 0 16px 16px;
  border-left-width: 16px;
  border-left-style: solid;
}
@media screen and (min-width: 768px) {
  .heading-department {
    margin-left: 0;
    margin-bottom: 64px;
  }
}
.heading-department__english {
  line-height: 1;
  font-size: min(8.2051282051vw, 32px);
  font-weight: 700;
  color: var(--hiraoka_common-base);
  margin-bottom: 16px;
}
.heading-department__text-sub {
  font-weight: 400;
  font-size: min(12.3076923077vw, 48px);
  line-height: 1;
  color: var(--hiraoka_common-base);
}

.heading-2 {
  position: relative;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 24px 32px 24px 32px;
  border-radius: 64px;
  margin-top: 64px;
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: var(--hiraoka_common-base);
}
.heading-2::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 64px;
}

.heading-3 {
  position: relative;
  padding-bottom: 8px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--hiraoka_common-base);
  border-bottom-width: 4px;
  border-bottom-color: var(--hiraoka_common-base);
}
.heading-3::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 120px;
  height: 4px;
  content: "";
}

.media-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.media {
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .media {
    display: flex;
    align-items: stretch;
  }
}
.media__image {
  height: 320px;
}
@media screen and (min-width: 768px) {
  .media__image {
    position: relative;
    width: 50%;
    height: auto;
  }
}
.media__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 19/16;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .media__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.media:nth-child(odd) {
  margin-right: 11px;
  border-radius: 0 32px 32px 0;
}
@media screen and (min-width: 768px) {
  .media:nth-child(odd) {
    margin-right: 40px;
  }
}
.media:nth-child(even) {
  margin-left: 11px;
  border-radius: 32px 0 0 32px;
}
@media screen and (min-width: 768px) {
  .media:nth-child(even) {
    margin-left: 30px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.media__body {
  padding: 32px;
}
.media__number {
  margin-bottom: 32px;
  font-size: 64px;
  color: var(--hiraoka_common);
  font-weight: 700;
  line-height: 1;
}
.media__headline {
  margin-bottom: 8px;
  color: var(--hiraoka_common-base);
  font-weight: 700;
  font-size: 18px;
}
.media__desc {
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 700;
}

.button {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.button__link {
  display: flex;
  border-radius: 32px;
  padding: 8px min(6.1538461538vw, 24px);
  align-items: center;
}
@media screen and (min-width: 768px) {
  .button__link {
    transition: opacity 300ms;
  }
}
.button__link:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .button__link:hover {
    opacity: 0.7;
  }
  .button__link:hover .button__icon-after {
    transform: translateX(8px);
  }
}
.button__link.is-button-chori {
  padding: 8px min(4.1025641026vw, 16px);
  background-color: var(--hiraoka_chori);
}
.button__link.is-button-chori .button__icon-after {
  margin-left: min(3.0769230769vw, 12px);
}
.button__link.is-button-eiyoshi {
  padding: 8px min(4.1025641026vw, 16px);
  background-color: var(--hiraoka_eiyoshi);
}
.button__link.is-button-eiyoshi .button__icon-after {
  margin-left: min(3.0769230769vw, 12px);
}
.button__link.is-button-kaigo-fukushi {
  padding: 8px min(4.1025641026vw, 16px);
  background-color: var(--hiraoka_kaigo-fukushi);
}
.button__link.is-button-kaigo-fukushi .button__icon-after {
  margin-left: min(3.0769230769vw, 12px);
}
.button__text {
  font-size: min(4.6153846154vw, 18px);
  font-weight: 700;
  line-height: 1;
  color: var(--white-color);
}
@media screen and (min-width: 768px) {
  .button__text {
    font-size: 18px;
  }
}
.button__icon-before {
  margin-right: min(2.0512820513vw, 8px);
}
.button__icon-after {
  margin-left: min(5.641025641vw, 22px);
}
@media screen and (min-width: 768px) {
  .button__icon-after {
    position: relative;
    transition: transform 300ms;
  }
}
.button.is-button-accent .button__link {
  background-color: var(--hiraoka_common-accent);
}
.button.is-button-open-campus .button__text {
  white-space: nowrap;
}
.button.is-button-center {
  justify-content: center;
}
.button.is-button-news .button__icon-after {
  background-image: url(../images/common/icon_link_01.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}
.button.is-button-submit .button__link {
  border: 5px solid var(--hiraoka_common-accent);
  background-color: var(--white-color);
  padding: 15px min(18.4615384615vw, 72px) 15px min(6.1538461538vw, 24px);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-image: url(../images/common/icon_link_04.svg);
  font-weight: bold;
  font-size: 16px;
}
.button.is-button-submit input {
  display: block;
  color: var(--hiraoka_common-accent);
  font-size: 16px;
  border-radius: 32px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .button.is-button-submit input {
    transition: opacity 300ms;
  }
}
.button.is-button-back .button__link {
  border: 5px solid #999;
  background-color: var(--white-color);
  padding: 11px min(6.1538461538vw, 24px);
}
@media screen and (min-width: 768px) {
  .button.is-button-back .button__link:hover .button__icon-before {
    transform: translateX(-8px);
  }
}
.button.is-button-back .button__text {
  color: #999;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .button.is-button-back .button__icon-before {
    position: relative;
    transition: transform 300ms;
  }
}
.button.is-button-large .button__link {
  padding: 16px min(6.1538461538vw, 24px);
}
.button + .button {
  margin-top: 32px;
}
.button.is-button-previous .button__link {
  border: 5px solid #999;
  background-color: var(--white-color);
  padding: 15px min(6.1538461538vw, 24px) 15px min(18.4615384615vw, 72px);
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-image: url(../images/common/icon_back_01.svg);
  color: #999;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .button.is-button-previous .button__link:hover .button__icon-before {
    transform: translateX(-8px);
  }
}
.button.is-button-previous .button__text {
  color: #999;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .button.is-button-previous .button__icon-before {
    position: relative;
    transition: transform 300ms;
  }
}

.button-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .button-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}
.button-wrapper .button + .button {
  margin-top: 0;
}

.fixed-menu {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  background-color: var(--hiraoka_common-accent);
  border-radius: 32px 32px 0 0;
  z-index: 70;
}
@media screen and (min-width: 768px) {
  .fixed-menu {
    width: auto;
    border-radius: 32px 0 0 0;
  }
}
.fixed-menu__item {
  position: relative;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  width: 33.3%;
  align-items: center;
}
.fixed-menu__item:last-child::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .fixed-menu__item {
    padding: 16px 32px;
    gap: 8px;
    width: auto;
    transition: opacity 300ms;
  }
}
.fixed-menu__item::after {
  position: absolute;
  top: 16px;
  right: 0;
  width: 1px;
  height: calc(100% - 32px);
  content: "";
  background-color: var(--white-color);
}
.fixed-menu__item:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .fixed-menu__item:hover {
    opacity: 0.7;
  }
}
.fixed-menu__item img {
  width: 32px;
}
@media screen and (min-width: 768px) {
  .fixed-menu__item img {
    width: 48px;
  }
}
.fixed-menu__name {
  font-size: 10px;
  font-weight: 700;
  color: var(--white-color);
  line-height: 1;
  text-align: center;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .fixed-menu__name {
    white-space: nowrap;
  }
}

.card {
  background-color: var(--white-color);
  border-radius: 32px;
  max-width: 336px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
.card__inner {
  padding: min(6.1538461538vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.card__link {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .card__link {
    transition: opacity 300ms;
  }
}
.card__link:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .card__link:hover {
    opacity: 0.7;
  }
  .card__link:hover .card__image img {
    transform: scale(1.05);
  }
}
.card__image {
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .card__image img {
    transition: transform 300ms;
  }
}
.card__headline {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  font-size: min(8.2051282051vw, 32px);
}
.card__date {
  font-weight: 700;
  font-size: min(10.2564102564vw, 40px);
  text-align: center;
  line-height: 1.1;
}
.card__body {
  padding: 24px;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 16px;
  display: flex;
  border-radius: 0 0 24px 24px;
  align-items: flex-start;
}
.card__body-date {
  font-size: 14px;
}
.card__body-headline {
  font-weight: 700;
  font-size: 16px;
  flex-grow: 1;
}
.card__body-category {
  margin-top: auto;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 32px;
  color: var(--white-color);
}
.card__body-category.is-category-common {
  background-color: var(--hiraoka_common);
  color: var(--text-color);
}
.card__body-category.is-category-chori {
  background-color: var(--hiraoka_chori);
}
.card__body-category.is-category-eiyoshi {
  background-color: var(--hiraoka_eiyoshi);
}
.card__body-category.is-category-kaigo-fukushi {
  background-color: var(--hiraoka_kaigo-fukushi);
}
.card.is-card-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  bottom: min(4.1025641026vw, 16px);
  z-index: 10;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .card.is-card-top {
    left: inherit;
    right: 40px;
    transform: translateX(0);
    width: 320px;
    bottom: 32px;
  }
}
.card.is-card-top .card__image {
  height: 160px;
}
.card.is-card-top .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}
.card.is-card-blog {
  border-radius: 24px;
  max-width: 384px;
}
.card.is-card-blog .card__image {
  border-radius: 24px 24px 0 0;
}
.card.is-card-blog .card__image {
  height: 215px;
}
.card.is-card-blog .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}
.card .button,
.card .button__link {
  width: 100%;
}

.card-slider {
  position: relative;
  left: 5px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  margin-bottom: 64px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .card-slider {
    margin-left: -16px;
  }
}
@media screen and (min-width: 1080px) {
  .card-slider {
    margin-bottom: 0;
  }
}
.card-slider .card {
  max-width: 320px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
  height: 100%;
}
.card-slider .card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 160px;
}
.card-slider .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.card-slider__item {
  width: 352px;
  padding: 16px;
  height: auto;
  justify-content: center;
}
.card-slider__pagination {
  bottom: 0 !important;
}
.card-slider__pagination span {
  width: 10px;
  height: 10px;
  margin: 0 12px !important;
  background-color: #eee;
  opacity: 1;
}
.card-slider__pagination span.swiper-pagination-bullet-active {
  background-color: var(--hiraoka_common-accent);
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .card-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
}
@media screen and (min-width: 1080px) {
  .card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 20px;
  gap: 32px;
  background-color: var(--hiraoka_common-base-light);
}
@media screen and (min-width: 768px) {
  .sns {
    padding: 64px 0;
    gap: 64px;
  }
}
.sns__item {
  width: 32px;
}
@media screen and (min-width: 768px) {
  .sns__item {
    width: 48px;
    transition: opacity 300ms;
  }
  .sns__item:hover {
    opacity: 0.7;
  }
}

.department-wrapper {
  display: flex;
  flex-direction: column;
  gap: 73px 0;
  margin-bottom: 80px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@media screen and (min-width: 768px) {
  .department {
    position: relative;
  }
}
.department__image {
  height: 560px;
  overflow: hidden;
}
.department__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.department:nth-child(odd) .department__image {
  margin-right: 40px;
  border-radius: 0 32px 32px 0;
}
@media screen and (min-width: 768px) {
  .department:nth-child(odd) .department__image {
    margin-right: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .department:nth-child(odd) .department__image {
    margin-right: 120px;
  }
}
.department:nth-child(odd) .department__body {
  border-radius: 32px 0 0 32px;
  margin-left: 40px;
}
@media screen and (min-width: 768px) {
  .department:nth-child(odd) .department__body {
    right: 0;
    padding: 32px 40px 32px 32px;
  }
}
.department:nth-child(even) {
  border-radius: 32px 0 0 32px;
}
@media screen and (min-width: 768px) {
  .department:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.department:nth-child(even) .department__image {
  border-radius: 32px 0 0 32px;
  margin-left: 40px;
}
@media screen and (min-width: 768px) {
  .department:nth-child(even) .department__image {
    margin-left: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .department:nth-child(even) .department__image {
    margin-left: 120px;
  }
}
.department:nth-child(even) .department__body {
  margin-right: 40px;
  border-radius: 0 32px 32px 0;
}
@media screen and (min-width: 768px) {
  .department:nth-child(even) .department__body {
    left: 0;
    padding: 32px 32px 32px 40px;
  }
}
.department__body {
  position: relative;
  margin-top: -200px;
  overflow: hidden;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .department__body {
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65%;
  }
}
.department__name {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.department__headline {
  margin-bottom: 24px;
  color: var(--hiraoka_common-base);
  font-weight: 700;
  font-size: min(8.2051282051vw, 32px);
}
.department__desc {
  margin-bottom: 24px;
  font-size: 18px;
}

.information-wrapper {
  display: flex;
}

.information__item {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  padding: 32px 10px;
  text-align: center;
  align-items: center;
  color: var(--white-color);
}
.information__item.is-item-fees {
  background-color: #999;
}
.information__item.is-item-record {
  background-color: var(--hiraoka_common);
  color: var(--hiraoka_common-base);
}
.information__item:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .information__item:hover .information__icon-top img {
    transform: scale(1.1);
  }
  .information__item:hover .information__icon-bottom {
    transform: translateX(8px);
  }
}
.information__icon-top {
  width: 80px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .information__icon-top img {
    transition: transform 300ms;
  }
}
.information__english {
  font-size: min(3.5897435897vw, 14px);
  font-weight: 700;
  margin-bottom: 8px;
}
.information__headline {
  font-size: min(6.1538461538vw, 24px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.information__icon-bottom {
  width: 40px;
}
@media screen and (min-width: 768px) {
  .information__icon-bottom {
    transition: transform 300ms;
  }
}
.information__icon-bottom img {
  width: 100%;
}

.bottom-banner {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 11px;
  max-width: 1096px;
  margin: 80px auto 0;
}
@media screen and (min-width: 768px) {
  .bottom-banner {
    padding: 0 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .bottom-banner {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .bottom-banner {
    padding: 80px 0;
  }
}
@media screen and (min-width: 768px) {
  .bottom-banner__item {
    transition: opacity 300ms;
  }
  .bottom-banner__item:hover {
    opacity: 0.7;
  }
}

.cover {
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #fff;
  text-align: center;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 24px;
  animation: fadeOutUp 3s forwards;
}
.cover__logo img {
  animation: fadeInUp 1s forwards;
  opacity: 0;
}

.page-header {
  border-left-style: solid;
  border-left-width: 16px;
  margin-bottom: 64px;
  padding: 16px 0 16px 16px;
  color: var(--hiraoka_common-base);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-header__sub {
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}
.page-header__headline {
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
}
.page-header:first-child {
  margin-top: 0;
}

@media screen and (min-width: 1080px) {
  .entry-content {
    padding: 0 40px;
  }
}
.entry-content h2 {
  position: relative;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 24px 32px 24px 32px;
  border-radius: 64px;
  margin-top: 64px;
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: var(--hiraoka_common-base);
  background-color: var(--white-color);
}
.entry-content h2::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 64px;
}
.entry-content h3 {
  position: relative;
  padding-bottom: 8px;
  margin-top: 64px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--hiraoka_common-base);
  border-bottom: solid 4px var(--hiraoka_common-base);
}
.entry-content h3::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 120px;
  height: 4px;
  content: "";
}
.entry-content h4 {
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 16px;
  color: var(--white-color);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}
.entry-content h5 {
  margin-bottom: 24px;
  border-radius: 8px;
  border-style: solid;
  border-width: 2px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  padding: 16px;
  color: var(--hiraoka_common-base);
  background-color: var(--white-color);
}
@media screen and (min-width: 1080px) {
  .entry-content > h2,
  .entry-content > h3,
  .entry-content > h4,
  .entry-content > h5 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }
}
.entry-content p {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.5;
}
.entry-content p strong {
  font-weight: 700;
}
.entry-content p a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .entry-content p a:hover {
    text-decoration: none;
  }
}
.entry-content ul {
  padding-inline-start: 0.5em;
  margin-bottom: 1em;
}
.entry-content ul li {
  text-indent: calc(-1em - 8px);
  padding-left: calc(1em + 8px);
  list-style-position: inside;
  list-style-type: disc;
  font-size: 16px;
  line-height: 1.5;
}
.entry-content ol {
  padding-inline-start: 0.5em;
  margin-bottom: 1em;
}
.entry-content ol li {
  text-indent: calc(-1em - 8px);
  padding-left: calc(1em + 8px);
  list-style-position: inside;
  list-style-type: decimal;
  font-size: 16px;
  line-height: 1.5;
}
.entry-content .wp-block-buttons {
  margin-bottom: 32px;
}
.entry-content .wp-block-button.small .wp-block-button__link {
  padding: 15px 56px 15px 16px;
}
.entry-content .wp-block-button__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 23px 80px 23px 24px;
  border-radius: 32px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: var(--white-color);
}
.entry-content .wp-block-button__link::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  background-image: url(../images/common/icon_link_02.svg);
  background-position: center center;
  content: "";
}
.entry-content .wp-block-button__link[target=_blank]::after {
  background-image: url(../images/common/icon_link_03.svg);
}
.entry-content .wp-block-button__link[href$=pdf]::after {
  background-image: url(../images/common/icon_download_01.svg);
}
@media screen and (min-width: 768px) {
  .entry-content .wp-block-button__link::after {
    transition: transform 300ms;
  }
  .entry-content .wp-block-button__link:hover::after {
    transform: translateX(8px) translateY(-50%);
  }
}
.entry-content .wp-block-flexible-table-block-table {
  margin-bottom: 16px;
}
.entry-content table {
  background-color: transparent;
  font-size: 0.9em;
  border-spacing: 0;
  border-collapse: collapse;
  min-width: 100%;
}
.entry-content table a {
  text-decoration: underline;
}
.entry-content table a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .entry-content table.is-stacked-on-mobile {
    border-bottom: 1px solid var(--border-color);
  }
}
@media screen and (max-width: 767px) {
  .entry-content table.is-stacked-on-mobile th {
    display: block;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .entry-content table.is-stacked-on-mobile td {
    display: block;
    border-bottom: none !important;
  }
}
.entry-content table th {
  white-space: wrap;
  border: 1px solid var(--border-color);
  vertical-align: middle;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  min-width: 240px;
}
.entry-content table td {
  white-space: wrap;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .entry-content .is-scroll-on-mobile table {
    width: auto !important;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .is-scroll-on-mobile td {
    white-space: nowrap !important;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .is-scroll-on-mobile th {
    white-space: nowrap !important;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .is-scroll-on-mobile thead + tbody td {
    white-space: wrap !important;
  }
}
.entry-content .is-scroll-on-pc {
  overflow-x: auto;
}
.entry-content .is-scroll-on-pc table {
  table-layout: fixed;
  border-collapse: collapse;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.5;
  width: auto;
}
@media screen and (max-width: 767px) {
  .entry-content .is-scroll-on-pc table th {
    white-space: nowrap !important;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .is-scroll-on-pc table td {
    white-space: wrap !important;
  }
}
.entry-content table th {
  font-weight: 400;
  padding: 16px;
  min-width: 240px !important;
  vertical-align: middle;
}
.entry-content table tfoot th, .entry-content table thead th {
  font-size: 16px;
}
.entry-content table caption + thead tr:first-child td, .entry-content table caption + thead tr:first-child th, .entry-content table colgroup + thead tr:first-child td, .entry-content table colgroup + thead tr:first-child th, .entry-content table thead:first-child tr:first-child td, .entry-content table thead:first-child tr:first-child th {
  border-block-start: 1px solid var(--border-color);
}
.entry-content table tbody + tbody {
  border-block-start: 2px solid hsla(0, 0%, 50.2%, 0.5019607843);
}
@media (max-width: 767px) {
  .entry-content table table {
    font-size: 0.8em;
  }
  .entry-content table table td, .entry-content table table th {
    padding: 7px;
    line-height: 1.3;
  }
  .entry-content table table th {
    font-weight: 400;
  }
}
.entry-content .wp-block-media-text {
  margin-bottom: 64px;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.entry-content .wp-block-media-text__content {
  padding: 0;
}
.entry-content .wp-block-columns {
  margin-bottom: 24px;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .entry-content .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .wp-block-columns.is-not-stacked-on-mobile.wp-container-core-columns-is-layout-4 {
    flex-wrap: wrap !important;
  }
  .entry-content .wp-block-columns.is-not-stacked-on-mobile.wp-container-core-columns-is-layout-4 .wp-block-column {
    flex-grow: 0;
    flex-basis: auto;
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .entry-content .wp-block-columns.is-not-stacked-on-mobile.wp-container-core-columns-is-layout-5 {
    flex-wrap: wrap !important;
  }
  .entry-content .wp-block-columns.is-not-stacked-on-mobile.wp-container-core-columns-is-layout-5 .wp-block-column {
    flex-grow: 0;
    flex-basis: auto;
    width: calc(50% - 8px);
  }
}
.entry-content .wp-block-column p:last-child {
  margin-bottom: 0;
}
.entry-content .wp-block-column .wp-block-image {
  margin-bottom: 16px;
}
.entry-content .has-large-font-size {
  font-size: 24px !important;
}
.entry-content .has-medium-font-size {
  font-size: 18px !important;
}
.entry-content .has-small-font-size {
  font-size: 14px !important;
}
.entry-content .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.entry-content + .button-wrapper {
  margin-top: 64px;
}
.entry-content .wp-block-image img {
  border-radius: 32px;
}

.cs-block-heading-group {
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.cs-block-label {
  display: inline-block;
  color: var(--white-color);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  margin: 0 16px 16px 0;
}

.cs-block-label-image {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin-bottom: 32px;
}
.cs-block-label-image figure {
  position: relative;
}
.cs-block-label-image figure img {
  width: 100%;
  max-width: inherit;
}

.cs-block-label-image__label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--white-color);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

.cs-block-anchor-nav {
  margin-bottom: 64px;
}
@media screen and (min-width: 1080px) {
  .cs-block-anchor-nav {
    margin-right: -40px;
    margin-left: -40px;
  }
}
.cs-block-anchor-nav__inner {
  padding-bottom: 5px;
  overflow-y: auto;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .cs-block-anchor-nav__inner {
    margin-right: 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1080px) {
  .cs-block-anchor-nav__inner {
    margin-right: 0;
  }
}
.cs-block-anchor-nav__list {
  list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .cs-block-anchor-nav__list {
    flex-wrap: wrap;
    background-color: #f9f9f9;
    border-radius: 32px;
    padding: 32px 0 16px;
  }
}
.cs-block-anchor-nav__item {
  list-style-type: none;
  list-style-position: inherit;
  text-indent: 0;
  padding: 16px 0;
  background-color: #f9f9f9;
  flex-shrink: 1;
}
@media screen and (min-width: 768px) {
  .cs-block-anchor-nav__item {
    margin-bottom: 16px;
    padding: 0;
    flex-shrink: 0;
    background-color: transparent;
  }
}
.cs-block-anchor-nav__item:first-child {
  border-radius: 32px 0 0 32px;
}
.cs-block-anchor-nav__item:last-child {
  border-radius: 0 32px 32px 0;
}
.cs-block-anchor-nav__item:last-child a {
  border-right: none;
}
.cs-block-anchor-nav__item a {
  display: block;
  position: relative;
  padding-left: 16px;
  color: var(--hiraoka_common-base);
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  padding: 8px 32px 32px;
  border-right-width: 1px;
  border-right-style: solid;
}
.cs-block-anchor-nav__item a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .cs-block-anchor-nav__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .cs-block-anchor-nav__item a {
    transition: opacity 300ms;
  }
}
.cs-block-anchor-nav__item a::before {
  position: absolute;
  left: 50%;
  bottom: 8px;
  border-top: 2px solid var(--hiraoka_common-base);
  border-right: 2px solid var(--hiraoka_common-base);
  width: 8px;
  height: 8px;
  margin-left: -4px;
  transform: rotate(135deg);
  content: "";
}
.cs-block-anchor-nav__item:only-child {
  border-radius: 32px;
  width: 100%;
  text-align: center;
  margin-right: 11px;
}
@media screen and (min-width: 768px) {
  .cs-block-anchor-nav__item:only-child {
    width: auto;
  }
}
.cs-block-anchor-nav__item:only-child a {
  padding: 8px 32px 32px;
  border-right: none;
}
.cs-block-anchor-nav__item:only-child a::before {
  margin-left: 0;
}

.cs-block-contents-menu {
  background-color: #f9f9f9;
  padding: 32px;
  border-radius: 32px;
  margin-bottom: 64px;
}
@media screen and (min-width: 1080px) {
  .cs-block-contents-menu {
    margin-right: -40px;
    margin-left: -40px;
  }
}
.cs-block-contents-menu__headline {
  display: block;
  margin-bottom: 16px;
  padding-bottom: 16px;
  box-sizing: border-box;
  font-size: 24px;
  line-height: 1;
  color: #999;
  text-decoration: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
.cs-block-contents-menu__list {
  list-style-type: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .cs-block-contents-menu__list {
    gap: 16px 64px;
  }
}
.cs-block-contents-menu__item {
  list-style-type: none;
  list-style-position: inherit;
  text-indent: 0;
  padding: 0;
  width: calc(50% - 8px);
}
@media screen and (min-width: 768px) {
  .cs-block-contents-menu__item {
    width: auto;
  }
}
.cs-block-contents-menu__item a {
  position: relative;
  padding-left: 16px;
  color: var(--hiraoka_common-base);
  font-weight: 700;
  font-size: 18px;
  display: block;
}
.cs-block-contents-menu__item a::before {
  position: absolute;
  left: 0;
  top: 13px;
  margin-top: -2px;
  border-top: 2px solid var(--hiraoka_common-base);
  border-right: 2px solid var(--hiraoka_common-base);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  content: "";
}

.l-container > .cs-block-contents-menu:last-child,
.l-container > .cs-block-anchor-nav:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1080px) {
  .l-container > .cs-block-contents-menu,
  .l-container > .cs-block-anchor-nav {
    margin-left: 0;
    margin-right: 0;
  }
}

.entry-content-meta {
  display: flex;
  align-items: center;
  margin-top: -48px;
  margin-bottom: 64px;
  gap: 16px;
}
.entry-content-meta__category {
  border-radius: 32px;
  font-size: min(3.5897435897vw, 14px);
  font-weight: 700;
  line-height: 1;
  padding: 8px min(4.1025641026vw, 16px);
}

.wp-block-embed__wrapper::before {
  padding-top: 56.25%;
  content: "";
  display: block;
}
.wp-block-embed__wrapper iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.has-primary-background-color {
  background-color: var(--hiraoka_common-base);
}

.has-hiraoka-background-color {
  background-color: var(--hiraoka_common);
}

.has-chori-background-color {
  background-color: var(--hiraoka_chori) !important;
}

.has-eiyoshi-background-color {
  background-color: var(--hiraoka_eiyoshi) !important;
}

.has-kaigo-fukushi-background-color {
  background-color: var(--hiraoka_kaigo-fukushi) !important;
}

.has-primary-color {
  color: var(--hiraoka_common-base);
}

.has-hiraoka-color {
  color: var(--hiraoka_common);
}

.has-chori-color {
  color: var(--hiraoka_chori);
}

.has-eiyoshi-color {
  color: var(--hiraoka_eiyoshi);
}

.has-kaigo-fukushi-color {
  color: var(--hiraoka_kaigo-fukushi);
}

.breadcrumb {
  margin-bottom: 16px;
  display: flex;
  padding: 8px 8px 8px 0;
  gap: 16px;
  margin-right: calc(50% - 50vw);
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .breadcrumb {
    margin-right: 0;
    padding: 8px 0;
  }
}
.breadcrumb li {
  font-size: 14px;
  white-space: nowrap;
}
.breadcrumb li + li {
  position: relative;
  padding-left: 20px;
}
.breadcrumb li + li::before {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  content: "";
}
.breadcrumb a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .breadcrumb a:hover {
    text-decoration: none;
  }
}

.form__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #f9f9f9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 24px;
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.form .required {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  background-color: var(--hiraoka_common-accent);
  color: var(--white-color);
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 4px;
  margin-left: 16px;
  vertical-align: middle;
}
.form__agree {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--border-color);
  border-radius: 8px;
  padding: 24px 16px;
  font-size: 14px;
}
.form__agree p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}
.form__agree .form-check {
  display: flex;
  justify-content: center;
}
.form__agree input {
  position: absolute;
  z-index: -1;
  font-size: 14px;
}
.form__agree input:checked + span::after {
  display: block;
}
.form__agree input + span {
  position: relative;
  padding-left: 28px;
  font-size: 14px !important;
  line-height: 1.5;
  cursor: pointer;
}
.form__agree input + span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--white-color);
  content: "";
  border: 1px solid var(--border-color);
}
.form__agree input + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../images/common/icon_checkbox.svg);
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  display: none;
}

.form-label {
  color: var(--hiraoka_common-base);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
  min-height: 28px;
  display: inline-block;
  vertical-align: middle;
}

.form-control {
  display: block;
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 8px;
  background-color: var(--white-color);
  font-size: 16px;
  line-height: 1.5;
}
.form-control::placeholder {
  color: #999;
}
.form-control + .form__note {
  margin-top: 8px;
}

.form-control-half {
  display: block;
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 8px;
  background-color: var(--white-color);
  font-size: 16px;
  line-height: 1.5;
}
.form-control-half::placeholder {
  color: #999;
}
@media screen and (min-width: 768px) {
  .form-control-half {
    width: calc(50% - 8px);
  }
}
.form-control-half + .form__note {
  margin-top: 8px;
}

textarea.form-control {
  height: 200px;
  resize: none;
}

.form-select {
  display: block;
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 16px 30px 16px 16px;
  border-radius: 8px;
  background-color: var(--white-color);
  font-size: 16px;
  line-height: 1.5;
  background-image: url(../images/common/icon_select.svg);
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-select::placeholder {
  color: #999;
}
.form-select + p {
  margin-top: 8px;
}

.form-group {
  padding-bottom: 24px;
  border-bottom: 1px solid #999;
}
.form-group:last-child {
  border-bottom: none;
}
.form-group p {
  margin-bottom: 8px;
}
.form-group p:last-child {
  margin-bottom: 0;
}

.form-check-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-check-radio {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.form-check-radio input + span {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}
.form-check-radio input + span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--white-color);
  content: "";
  border-radius: 50%;
  border: 3px solid var(--border-color);
}
.form-check-radio input {
  position: absolute;
  z-index: -1;
}
.form-check-radio input:checked + span::before {
  background-color: var(--hiraoka_common-accent);
}
@media screen and (min-width: 768px) {
  .form-check-radio.is-col {
    flex-direction: column;
  }
}

.form-check-check {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 16px;
}
.form-check-check input + span {
  display: block;
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}
.form-check-check input + span::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--white-color);
  content: "";
  border: 1px solid var(--border-color);
}
.form-check-check input + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../images/common/icon_checkbox.svg);
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  display: none;
}
.form-check-check input {
  position: absolute;
  z-index: -1;
}
.form-check-check input:checked + span::after {
  display: block;
}
@media screen and (min-width: 768px) {
  .form-check-check.is-row {
    flex-direction: row;
  }
}

.form-column-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 8px 0;
}
@media screen and (min-width: 768px) {
  .form-column-wrapper {
    flex-direction: row;
  }
}
.form-column-wrapper:last-child {
  margin: 8px 0 0;
}
@media screen and (min-width: 768px) {
  .form-column-wrapper.is-column-unevenly-two .form-column-item:first-child {
    width: 70%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .form-column-wrapper.is-column-unevenly-three .form-column-item:first-child {
    width: 45%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .form-column-wrapper.is-column-unevenly-three .form-column-item:nth-child(2) {
    width: 30%;
    flex-shrink: 0;
  }
}

.form-column-item {
  width: 100%;
}

.open-campus {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .open-campus {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .open-campus {
    padding: 0 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.open-campus__item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.open-campus__image {
  height: 240px;
}
.open-campus__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.open-campus__headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(6.1538461538vw, 24px);
  line-height: 1;
  font-weight: 700;
  padding: 16px;
  border-radius: 16px;
}
.open-campus__headline-icon-wrapper {
  display: flex;
  gap: 8px;
}
.open-campus__icon {
  display: block;
  width: min(10.2564102564vw, 40px);
  height: min(10.2564102564vw, 40px);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
}
.open-campus__icon.is-icon-lunch {
  background-image: url(../images/common/icon_lunch.svg);
}
.open-campus__icon.is-icon-observation {
  background-image: url(../images/common/icon_observation.svg);
}
.open-campus__icon.is-icon-experience {
  background-image: url(../images/common/icon_experience.svg);
}
.open-campus__icon.is-icon-bus {
  width: 64px;
  height: 30px;
  background-image: url(../images/common/icon_bus.svg);
}
.open-campus__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.open-campus__category-list .is-icon-bus {
  width: 116px;
  height: 56px;
}
.open-campus__category {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.open-campus__category.is-category-off {
  background-color: var(--border-color) !important;
  color: var(--white-color) !important;
}
.open-campus__category.is-category-off .is-icon-lunch {
  background-image: url(../images/common/icon_lunch_off.svg);
}
.open-campus__category.is-category-off .is-icon-observation {
  background-image: url(../images/common/icon_observation_off.svg);
}
.open-campus__category.is-category-off .is-icon-experience {
  background-image: url(../images/common/icon_experience_off.svg);
}
.open-campus__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.open-campus__body-category-wrapper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.open-campus__button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.open-campus__button-wrapper .button__link {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.open-campus__button-wrapper .is-button-accent .button__link {
  padding: 16px min(6.1538461538vw, 24px);
}
.open-campus__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .open-campus__info {
    flex-direction: row;
  }
}
@media screen and (min-width: 1080px) {
  .open-campus__info {
    padding: 0 40px;
  }
}
.open-campus__info-headline {
  font-size: 18px;
  font-weight: 700;
  color: var(--hiraoka_common-base);
  text-align: center;
}
.open-campus__info-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.open-campus__info-bus {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 64px;
}
.open-campus__info-note {
  padding-inline-start: 0.5em;
  margin-bottom: 1em;
}
.open-campus__info-note li {
  text-indent: calc(-1em - 8px);
  padding-left: calc(1em + 8px);
  list-style-position: inside;
  list-style-type: disc;
  font-size: 16px;
  line-height: 1.5;
}

.open-campus-bottom {
  margin-top: 64px;
}
.open-campus-bottom__image + .open-campus-bottom__image {
  margin-top: 64px;
}

.tab {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 32px;
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
@media screen and (min-width: 768px) {
  .tab {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 64px;
  }
}
.tab a {
  display: block;
  padding: 0 0 10px;
  font-weight: 700;
  color: #999;
  width: 100%;
  font-size: min(3.5897435897vw, 14px);
  text-decoration: none;
  text-align: center;
}
.tab a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .tab a {
    padding: 0 32px 10px;
    font-size: 16px;
    transition: opacity 300ms;
    white-space: nowrap;
    width: auto;
  }
  .tab a:hover {
    opacity: 0.7;
  }
}
.tab a.is-current {
  border-bottom: 8px solid var(--text-color);
  color: var(--text-color);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.page-numbers {
  display: flex;
  gap: 16px;
}
.page-numbers span, .page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0;
}
