@charset "UTF-8";
/**
 * Main Stylesheet
 * 
 * @package ghakata-jh
 *
 */

/*------------------------------------------
  色設定
--------------------------------------------*/
:root {
  /*----------------
  色設定
  ------------------*/
  --text-color: #3f3f3f;
  /* --main-color: #00439a; */
  --main-color: #E88B9F;
  --dark-color: #003060;
  --light-color: #e2ecba;
  --high-color: #2068c8;
  --accent-color: #499475;
  --background-color: #f9f9f9;
  --logo-color: #00439a;
  --link-color: blue;
  --visited-color: red;
  --page-top-color: #00439a;
  --error-color: #e51221;
  --sp-footerguide-color: #00439a;
  /*----------------
  サイズ設定
  ------------------*/
  --main-2col-width: 810px;
  /* 2カラム時のmainの幅 */
  --sidebar-2col_width: 240px;
  /* 2カラム時のsidebarの幅 */
  --hamb_menu_size: 36px;
  /* ハンバーガーメニューのサイズ(縦＆横) */
}

/* ==========================================================================
   XXXX
   XXXXXXX
   ========================================================================== */
@media screen and (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}

/*---------------------------------------------------------------------------
  body
  --------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  body {
    margin-left: 18.75%;
  }
}

/*---------------------------------------------------------------------------
  Google reCAPTCHA v3
  --------------------------------------------------------------------------- */
.grecaptcha-badge {
  display: none;
  bottom: 130px !important;
}

@media screen and (min-width: 768px) {
  .grecaptcha-badge {
    bottom: 90px !important;
  }
}

@media screen and (min-width: 992px) {
  .grecaptcha-badge {
    bottom: 140px !important;
  }
}

/*---------------------------------------------------------------------------
  共通ヘッダー
  --------------------------------------------------------------------------- */
.site-header {
  width: 100%;
}

.navbar_brand {
  width: calc(200 / 320 * 100vw);
  margin: 22px 0 24px 22px;
}

.navbar_brand a {
  display: block;
  line-height: 1px;
}

.header_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}

.home .header_container {
  position: absolute;
  background-color: transparent;
}


.hamb_menu {
  display: block;
}

.hamb_menu .btn_menu {
  top: 15px;
  right: 16px;
  box-shadow: 1px 1px 1px 0px rgba(225, 204, 206, 0.6);
  border: 0.5px solid #EAD1D6;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, .9);
}

.hamb_menu .btn_menu::after {
  content: 'MENU';
  display: block;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 90%;
}

.hamb_menu .btn_menu span,
.hamb_menu .btn_menu span::before,
.hamb_menu .btn_menu span::after {
  top: 50%;
  width: 15px;
  height: 1px;
  background-color: #D3525F;
}

.hamb_menu .btn_menu span::before {
  top: -6.8px;
}

.hamb_menu .btn_menu span::after {
  top: 6.8px;
}

.hamb_menu .btn_menu::after {
  visibility: hidden;
}

.hamb_menu #menu_onoff:checked~.btn_menu {
  top: 15px;
  right: 16px;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

.hamb_menu #menu_onoff:checked~.btn_menu span::after,
.hamb_menu #menu_onoff:checked~.btn_menu span::before {
  width: 20px;
  background-color: #fff;
}

.hamb_menu #menu_onoff:checked~.btn_menu::after {
  content: 'CLOSE';
}

/* Animation disabled */
.hamb_menu #menu_onoff:checked~.menu_contents li {
  transform: unset;
  transition: unset;
}

.hamb_menu .menu_contents li {
  transform: unset;
  transition: unset;
}

.hamb_menu .menu_contents li:nth-child(2),
.hamb_menu .menu_contents li:nth-child(3),
.hamb_menu .menu_contents li:nth-child(4),
.hamb_menu .menu_contents li:nth-child(5),
.hamb_menu .menu_contents li:nth-child(6),
.hamb_menu .menu_contents li:nth-child(7),
.hamb_menu .menu_contents li:nth-child(8) {
  transition-delay: unset !important;
}

.hamb_menu .menu_contents li a {
  transition: unset;
}


@media screen and (min-width: 768px) {
  .header_area .site-branding .navbar_brand {
    display: none;
  }

  .hamb_menu .btn_menu {
    display: none;
  }

  .hamb_menu .menu_contents .navbar_brand {
    width: 40%;
    margin: 10px 0;
  }

  .hamb_menu .menu_contents .navbar_brand img {
    width: 100%;
    height: auto;
  }

}

/* adminbar */
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: absolute;
    top: -46px;
  }
}

@media screen and (max-width: 374px) {
  #wpadminbar #wp-toolbar ul li {
    width: 42px;
  }

  #wpadminbar .ab-top-secondary {
    float: none;
  }

}

/*---------------------------------------------------------------------------
  共通ヘッダーグローバルメニュー
  ---------------------------------------------------------------------------*/
.hamb_menu .menu_contents {
  overflow-y: scroll;
  color: #fff;
  padding: 0 0 2.5rem;
  background-color: #E88B9F;
}

.hamb_menu .menu_contents .info_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 5em;
  border-top: 0.5px solid #fff;
  border-bottom: 0.5px solid #fff;
  font-size: 81.2%;
  background-color: #D3525F;
}

.hamb_menu .menu_contents .info_item a span {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
}

.hamb_menu .menu_contents .info_item a::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 2.46em;
  height: 2.46em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: url(/img/jh/common/icon_mail.svg);
  background-color: rgba(255, 255, 255, 0.6);
  background-repeat: no-repeat;
  background-size: cover;
}

.hamb_menu .menu_contents .info_item:first-child a::before {
  background-image: url(/img/jh/common/icon_map-pin.svg);
}

.hamb_menu .menu_contents ul {
  padding: 0;
}

.hamb_menu .menu_contents h2 span {
  display: block;
}

.hamb_menu .menu_contents .global_menu {
  width: 86.8%;
  margin: 1.75rem auto 1.875rem;
}

.hamb_menu .menu_contents .globalmenu_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.hamb_menu .menu_contents details.globalmenu_item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.hamb_menu .menu_contents .globalmenu_item ul {
  padding: 0;
}

.hamb_menu .menu_contents .global_menu .globalmenu_course_futsu {
  margin-bottom: 0.5em;
}

.hamb_menu .menu_contents .globalmenu_item h3 {
  font-size: 83.3%;
  font-weight: normal;
  margin-bottom: 0.5em;
}

.hamb_menu .menu_contents .global_menu .menu_item a {
  padding: 0 0 1.16em 1em;
  font-size: 83.3%;
  text-align: left;
}

.hamb_menu .menu_contents .global_menu .menu_item a:hover {
  text-decoration: underline;
}

.hamb_menu .menu_contents .global_menu .menu_item.menu_item_sub a {
  padding: 0 0 1.16em 2em;
}

.hamb_menu .menu_contents h2 {
  font-size: 81.2%;
  font-weight: normal;
  margin: 1.5em 0;
  line-height: 1.2;
}

.hamb_menu .menu_contents summary h2::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.23em;
  height: 1.23em;
  aspect-ratio: 1/1;
  background-image: url(/img/jh/common/icon_acc_plus_w.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.hamb_menu .menu_contents details[open] summary h2::before {
  background-image: url(/img/jh/common/icon_acc_minus.svg);
}

.hamb_menu .menu_contents .address_box .address,
.hamb_menu .menu_contents .address_box .tel {
  letter-spacing: 0.04em;
}

.hamb_menu .menu_contents .address_box .address {
  font-size: 90%;
}

.hamb_menu .menu_contents .address_box .tel {
  font-size: 140%;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .hamb_menu .menu_contents {
    width: 18.75%;
    position: fixed;
    top: 0;
    left: 0;
    visibility: visible;
  }

  .admin-bar .hamb_menu .menu_contents {
    top: 32px;
  }

  .hamb_menu .menu_contents::-webkit-scrollbar {
    display: none;
  }

  .hamb_menu .menu_contents .navbar_brand {
    width: 82.2%;
    margin: 3.687rem auto 3.375rem;
  }

  .hamb_menu .menu_contents .info_item:first-child a {
    border-bottom: 0;
  }

  .hamb_menu .menu_contents .info_item a span {
    left: 22%;
  }

  .hamb_menu .menu_contents .info_item a::before {
    left: 7%;
  }

  .hamb_menu .menu_contents ul {
    flex-direction: column;
  }

  .hamb_menu .menu_contents li {
    opacity: 1;
    transform: translateX(0);
    padding: 0;
  }

  .hamb_menu .menu_contents li a {
    text-align: left;
    padding: 10px 0;
  }

  .hamb_menu .menu_contents .global_menu {
    width: 85.1%;
    margin: 1.75rem auto 1.875rem;
  }

}

@media screen and (max-width: 782px) {
  .admin-bar .hamb_menu .menu_contents {
    top: 46px;
  }
}

@media screen and (max-width: 767px) {
  .hamb_menu .menu_contents .globalmenu_item_only {
    display: initial;
  }

  .hamb_menu .menu_contents .info_item:first-child a {
    border-right: 0.5px solid #fff;
  }

  .admin-bar .hamb_menu #menu_onoff:checked~.menu_contents {
    top: 46px;
  }

  .admin-bar .hamb_menu #menu_onoff:checked~.btn_menu {
    top: 61px;
  }
}

@media screen and (max-width: 374px) {
  .hamb_menu .menu_contents .address_box .address {
    font-size: 75%;
  }

  .hamb_menu .menu_contents .address_box .tel {
    font-size: 125%;
  }

}

/*---------------------------------------------------------------------------
  共通フッター
  --------------------------------------------------------------------------- */
footer {
  background-color: #fff;
  color: var(--text-color);
}

footer .footer_logo {
  width: 90%;
}

footer a {
  color: var(--text-color) !important;
}

footer a:hover {
  text-decoration: underline;
}

.footer_address_area {
  background-color: #D3525F;
  color: #fff;
}

.footer_address_area.sp-only p {
  font-weight: 300;
}

.footer_address_area.sp-only p.tel {
  line-height: 1.4;
}

.footer_address_area.sp-only p.address {
  font-size: 75%;
}

.footer_menu_area {
  font-size: 90%;
}

.footer_menu_area h2 {
  position: relative;
  font-size: 120%;
  margin: 1em 0 0;
}

.footer_menu_area .globalmenu_item h3 {
  font-size: 100%;
  margin-bottom: 0;
  margin-top: 5px;
}

.footer_menu_area .globalmenu_item .globalmenu_course_total {
  margin-bottom: 0;
}

.footer_menu_area .globalmenu_item .globalmenu_course_futsu,
.footer_menu_area .globalmenu_item .globalmenu_course_total {
  margin-left: 1em;
}

.footer_menu_area .globalmenu_item a {
  display: inline-block;
  padding: 5px 0;
}

.footer_menu_area li a img {
  display: block;
  width: 85%;
  margin-top: 1em;
}

.footer_credit_area .globalmenu_general ul li::before {
  content: "/";
  margin-right: 1em;
}

.footer_credit_area .globalmenu_general ul li:first-child::before {
  content: "";
  margin-right: 0;
}

.footer_credit_area .globalmenu_general ul li a {
  font-size: 110%;
}

footer .copyright {
  padding: 1em 0 1.5em;
}

@media screen and (min-width: 768px) {
  footer .container {
    width: 76.9%;
  }

  .footer_credit_area {
    background-color: #E88B9F;
    color: #fff;
  }

  footer details.globalmenu_item>summary {
    pointer-events: none;
    cursor: default;
  }
}

@media screen and (max-width: 767px) {
  footer {
    margin-bottom: 70px;
  }

  footer .footer_logo {
    width: 90%;
    text-align: center;
    margin-bottom: 1em;
  }

  .footer_menu_area {
    background-color: #FBEEEF;
  }

  .footer_menu_area .menu_item a {
    font-size: 83.3%;
    padding: 0 0 1.16em;
  }

  .footer_menu_area .menu_item:last-child a {
    padding: 0;
  }

  .footer_menu_area li a img {
    width: 100%;
  }

  .footer_menu_area h2 {
    font-size: 81.2%;
  }

  .footer_menu_area details ul {
    margin-top: 1em;
  }

  .footer_menu_area .globalmenu_item h3 {
    font-size: 81.2%;
  }

  .footer_menu_area .globalmenu_course ul {
    margin-top: 0;
    margin-bottom: 1em;
  }

  .footer_menu_area .globalmenu_course ul li a {
    padding: 0.58em 0;
  }

  .footer_menu_area .container>div>div.sp-only,
  .footer_menu_area details {
    padding-bottom: 1em;
    border-bottom: 1px solid #FDC4D0;
  }

  .footer_menu_area summary h2::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    background-image: url(/img/jh/common/icon_acc_plus.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .footer_menu_area details[open] summary h2 {
    color: #D3525F;
  }

  .footer_menu_area details[open] summary h2::before {
    background-image: url(/img/jh/common/icon_acc_minus.svg);
  }

  .footer_credit_area {
    font-size: 62.5%;
  }

  .footer_credit_area .globalmenu_general ul {
    display: flex;
    justify-content: center;
    gap: 1em;
  }
}


/*------------------------------------------
  学園グループバナー
--------------------------------------------*/
.banner_area {
  background-color: #FBEEEF;
}

.banner_area .container {
  width: 80%;
}

.banner_area h2 {
  font-size: 81.25%;
  font-weight: normal;
  color: #D3525F;
}

.banner_area .banner_img {
  width: 95%;
}

.banner_area .banner_img img {
  width: 100%;
}

.banner_area figure img,
.banner_area picture img {
  transform: unset;
  transition: unset;
}

.banner_area a:hover figure img,
.banner_area a:hover picture img {
  transform: unset;
}

@media screen and (min-width: 768px) {
  .banner_area .container {
    width: 76.9%;
  }

  .banner_area h2 {
    margin: 0 auto 1.25rem;
    font-size: 125%;
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  .banner_area .banner_group {
    width: 94%;
    margin: 0 auto;
  }
}

/*------------------------------------------
  スマホ用フッターガイド
--------------------------------------------*/
.sp_footer_guide {
  /* display: none; */
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 9999;
}

.f_guide_wrap {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 5%;
  border-radius: 5px;
  padding: 1em 0 1em 5.9%;
  font-size: 88%;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.f_guide_wrap:first-child {
  border-radius: 0 8px 0 0;
  background-color: #E4737E;
  opacity: 0.95;
}

.f_guide_wrap:last-child {
  border-radius: 8px 0 0 0;
  background-color: #28C079F2;
  opacity: 0.95;
}

.f_guide_wrap figure {
  width: 20%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.f_guide_text {
  color: #fff !important;
  text-align: left;
}

.page-top a {
  color: #E4737E;
}

@media screen and (max-width: 320px) {
  .f_guide_wrap {
    font-size: 75%;
  }
}

/*------------------------------------------
  PC用お問い合わせガイド
--------------------------------------------*/
#guide_inq {
  display: none;
  position: fixed;
  bottom: 280px;
  /* left: 10px; */
  right: -10px;
  width: 110px;
  height: 110px;
  font-size: 85%;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  padding: 38px 0;
  text-align: center;
  transition: bottom 2s;
  z-index: 9999;

  top: 30% !important;
}

#guide_inq a {
  color: #fff;
  text-decoration: none;
}

/*------------------------------------------
  Page Top
--------------------------------------------*/
.page-top {
  bottom: 4rem;
}

.page-top a {
  font-size: 300%;
}

/*------------------------------------------
  固定ページレイアウト
--------------------------------------------*/
#page .page_container {
  margin: 0;
  width: 100%;
  max-width: unset;
}

#page .entry-header {
  margin: 0 0 2.31rem;
}

#page .entry-header img {
  min-height: unset;
}

#page .entry-header .entry-title_wrap {
  top: unset;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 84.3%;
  padding: 0.875em 0 1.125em;
  font-size: 100%;
  font-weight: 500;
  text-align: center;
  text-shadow: none;
  background-image: url(/img/jh/common/bg_page_title.png);
  background-repeat: no-repeat;
  background-size: cover;
}

#page .entry-header .entry-title_wrap h1 {
  font-weight: 400;
  color: #FFF;
}

#page .entry-header .entry-title_wrap h1 span {
  font-size: 62%;
  display: inline-block;
  margin-bottom: 0.6em;
}

#page .entry-header .entry-title_wrap::before {
  content: none;
}

#page .entry-header .entry-title {
  margin-left: 0;
}

#page .entry-header .entry-title .title_jp {
  margin-bottom: 0;
}

#page .breadcrumb {
  flex-wrap: wrap;
}

#page .breadcrumb_area {
  margin: 0 auto;
  padding: 0;
  width: 84.3%;
  max-width: unset;
  background-color: transparent;
}

#page .breadcrumb_area .breadcrumb a {
  text-decoration: none;
  color: var(--text-color);
}

#page .breadcrumb_area .breadcrumb li:last-of-type {
  color: #E4737E;
}

#page .entry-content a {
  text-decoration: none;
  color: var(--text-color);
}

#page .entry-content h2 {
  display: block;
  width: 100%;
  font-size: 100%;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #E4737E;
}

#page .entry-content .area_padding {
  width: 84.3%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #page .entry-header {
    margin: 4.31rem auto 4.62rem;
    padding: 0;
    width: 76.9%;
    min-height: unset;
  }

  #page .entry-header img {
    max-width: unset;
    height: auto;
  }

  #page .entry-header .entry-title_wrap {
    width: 55.5%;
    font-size: 150%;
  }

  #page .breadcrumb_area {
    width: 76.9%;
  }

  #page .breadcrumb .title_br {
    display: none;
  }

  #page .entry-content {
    margin-top: 2.35rem;
  }

  #page .entry-content h2 {
    font-size: 175%;
  }

  #page .entry-content .area_padding {
    width: 76.9%;
    margin: 0 auto;
    max-width: 900px;
  }
}

@media screen and (max-width: 767px) {
  #page {
    margin-top: 72.5px;
  }

  #page .entry-title_img {
    width: 100vw;
  }
}

/*------------------------------------------
  投稿ページ（新着情報記事）
--------------------------------------------*/
#post .page_container {
  margin: 0;
  width: 100%;
  max-width: unset;
}

#post main .container {
  width: 76.9%;
  max-width: 900px;
}

#post .entry-header {
  position: relative;
  height: 50px;
  margin: 0 0 2.31rem;
}

#post .entry-header .entry-title_wrap {
  position: absolute;
  top: unset;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 84.3%;
  padding: 0.875em 0 1.125em;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-shadow: none;
  background-image: url(/img/jh/common/bg_page_title.png);
  background-repeat: no-repeat;
  background-size: cover;
}

#post.archive .entry-header .entry-title_wrap {
  padding: 0.4em 0 0.7em;
}

#post .entry-header .entry-title_wrap h1 {
  font-size: 100%;
  font-weight: 400;
  color: #FFF;
}

#post .entry-header .entry-title_wrap h1 span {
  font-size: 62%;
  display: inline-block;
  margin-bottom: 0.6em;
}

#post .entry-header .entry-title_wrap::before {
  content: none;
}

#post .entry-header .entry-title {
  margin-left: 0;
}

#post .entry-header .entry-title .title_jp {
  margin-bottom: 0;
}

#post .breadcrumb {
  flex-wrap: wrap;
}

#post .breadcrumb_area {
  margin: 0 auto;
  padding: 0;
  width: 84.3%;
  max-width: unset;
  background-color: transparent;
}

#post .breadcrumb_area .breadcrumb a {
  text-decoration: none;
  color: var(--text-color);
}

#post .breadcrumb_area .breadcrumb li:last-of-type {
  color: #E4737E;
}

#post .entry-content {
  margin-top: 1rem;
}

#post .entry-content a {
  text-decoration: none;
  color: var(--text-color);
}

#post .entry-content h2 {
  display: block;
  width: 100%;
  font-size: 100%;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #4B9BDC;
}

#post .entry-content .area_padding {
  width: 84.3%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  #post .entry-header {
    margin: 4.31rem auto 4.62rem;
    padding: 0;
    width: 76.9%;
    min-height: unset;
  }

  #post .entry-header img {
    max-width: unset;
    min-height: unset;
    height: auto;
  }

  #post .entry-header .entry-title_wrap {
    width: 55.5%;
    font-size: 150%;
  }

  #post .breadcrumb_area {
    width: 76.9%;
  }

  #post .breadcrumb .title_br {
    display: none;
  }

  #post .entry-content {
    margin-top: 0;
  }

  #post .entry-content h2 {
    font-size: 137.5%;
  }

  #post .entry-content .area_padding {
    width: 76.9%;
    margin: 0 auto;
    max-width: 900px;
  }
}

@media screen and (max-width: 767px) {
  #post {
    margin-top: 72.5px;
  }

  #post .entry-title_img {
    width: 100vw;
  }
}

#post main .container {
  width: 84.3%;
}

#post .article_item {
  width: 50%;
}

#post .news_item {
  width: 94%;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  color: var(--text-color) !important;
  text-decoration: none;
}

#post .news_item .news_thumbnail {
  position: relative;
  aspect-ratio: 134 / 100;
  overflow: hidden;
}

#post .news_item .news_cat {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #eee;
  margin-left: 5px;
  padding: 3px 7px;
  font-size: 68.75%;
}

#post .news_item .news_cat_event {
  background-color: #D3525F;
  color: #fff;
}

#post .news_item .news_cat_information {
  background-color: #31cf82;
  color: #fff;
}

#post .news_item img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#post .news_meta {
  font-size: 68.75%;
}

#post .news_date {
  letter-spacing: 0.04em;
}

@media screen and (min-width: 768px) {
  #post main .container {
    width: 76.9%;
    max-width: 900px;
  }

  #post .article_item {
    width: 33.3%;
    max-width: 300px;
  }

  #post .news_item {
    padding: 1rem;
    margin-bottom: 0;
  }

  #post .news_meta {
    font-size: 85.6%;
  }

  #post .news_btn a {
    font-size: 92%;
  }
}

@media screen and (max-width: 767px) {}

/*------------------------------------------
  投稿個別記事
--------------------------------------------*/
#blog main .container {
  width: 84.3%;
}

#blog #primary>.entry-header {
  height: 50px;
}

#blog article .entry-header {
  margin: 2em 0;
}

#blog article .article-time {
  font-size: 90%;
  color: #7f7f7f;
}

@media screen and (min-width: 768px) {
  #blog main .container {
    width: 76.9%;
    max-width: 900px;
  }
}

@media (max-width: 767px) {
  #blog article .entry-title {
    font-size: 150%;

  }
}


/*------------------------------------------
  404ページ
--------------------------------------------*/
.error404 .entry-header {
  position: relative;
  height: 50px;
}

.error404 .entry-header .entry-title_wrap {
  position: absolute;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.error404 .page-content {
  width: 82%;
  margin: 2em auto;
}

.error404 .page-content p {
  text-align: center;
}



/*------------------------------------------
  共通パーツ
--------------------------------------------*/
/*--- h2 title_u_line ---*/
h2.title_u_line {
  padding-bottom: 0.81rem;
  border-bottom: 1px solid rgba(228, 115, 126, 0.5);
}

/*--- media_btn ---*/
.media_btn {
  border: 1px solid rgba(228, 115, 126, 0.5);
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #FFF;
}

.media_btn_item {
  position: relative;
}

.media_btn_item figure {
  width: 35.5%;
}

.media_btn_item p {
  width: 65.5%;
  margin: 0 0 0 1.15em;
  font-size: 81.25%;
  font-weight: 500;
}

.media_btn_item::after {
  position: absolute;
  content: '';
  width: 1.3rem;
  height: 1.3rem;
  aspect-ratio: 1 / 1;
  bottom: 0;
  right: 0;
  border-radius: 0.3rem 0 0 0;
  background-color: #E4737E;
  background-image: url(/img/jh/common/arrow_right.svg);
  background-repeat: no-repeat;
  background-size: 0.615rem;
  background-position: 55% center;
}

@media (min-width: 768px) {
  .media_btn {
    width: 46.6%;
  }

  .media_btn_item p {
    font-size: 100%;
  }
}

@media (max-width: 767px) {
  .media_btn {
    width: 100%;
  }
}

/*--- media-card ---*/
.media-card {
  position: relative;
  width: 100%;
  z-index: 0;
}

.media-card .media-card_image {
  position: relative;
  width: 100%;
  margin: 0 auto 1rem;
}

.media-card.media-card-rich {
  padding: 0 1.25rem 1.5rem;
}

.media-card.media-card-rich::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 8rem);
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 0.5rem;
  background-color: #CCC;
}

.media-card.media-card-rich .media-card_title {
  margin-bottom: 0.88em;
  font-size: 112.5%;
  font-weight: 500;
}

.media-card.media-card-rich .media-card_image::after {
  content: '';
  display: block;
  position: absolute;
  top: -30px;
  right: -30px;
  width: 48px;
  height: 43.9px;
  background-image: url(/img/jh/home/feature_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.media-card.media-card-rich .media-card_text {
  font-size: 81.25%;
  letter-spacing: -0.02em;
  line-height: 1.61;
  margin-bottom: 1em;
}

.media-card.media-card-simple .media-card_title {
  position: relative;
  width: 100%;
  padding: 0.625em 0;
  min-height: 4.375em;
  font-size: 100%;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  color: #4B9BDC;
  background-color: rgba(75, 155, 220, 0.1);
  border-radius: 0.5rem;
}

.media-card.media-card-simple .media-card_title span {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.media-card.media-card-rich-fix {
  padding: 0 1.25rem 1.5rem;
}

.media-card.media-card-rich-fix::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: calc(100% - 8rem);
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 0.5rem;
  background-color: #CCC;
}

.media-card.media-card-rich-fix .media-card_title {
  margin-bottom: 0.88em;
  font-size: 112.5%;
  font-weight: 500;
}

.media-card.media-card-rich-fix .media-card_image::after {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 49px;
  height: 35px;
  background-image: url(/img/sh/home/feature_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.media-card.media-card-rich-fix .media-card_text {
  font-size: 81.25%;
  letter-spacing: -0.02em;
  line-height: 1.61;
  margin-bottom: 1em;
}


@media (min-width: 768px) {
  .media-card .media-card_title {
    position: absolute;
    top: 0;
    left: 3.18rem;
    font-size: 162.5%;
  }

  .media-card .media-card_image {
    float: right;
    margin: 2rem auto 1rem;
  }

  .media-card .media-card_text {
    display: block;
    position: absolute;
  }

  .media-card.media-card-rich {
    padding-right: 4.18rem;
  }

  .media-card.media-card-rich::before {
    height: 75.5%;
    top: 24.5%;
    border-radius: 1rem;
  }

  .media-card.media-card-rich .media-card_title {
    position: absolute;
    top: 0.5rem;
    left: 3.18rem;
    font-size: 162.5%;
  }

  .media-card.media-card-rich .media-card_image {
    width: 43.7%;
  }

  .media-card.media-card-rich .media-card_text {
    top: 6.68rem;
    left: 3.18rem;
    width: 42%;
    font-size: 87.5%;
  }

  .media-card.media-card-simple .media-card_title {
    width: 49.6%;
    float: left;
    top: 0;
    left: 0;
    font-size: 150%;
  }

  .media-card.media-card-simple .media-card_image {
    width: 45.2%;
    margin: 0 auto 1rem;
  }

  .media-card.media-card-simple .media-card_text {
    width: 49.6%;
    top: 8em;
  }

  .media-card.media-card-rich-fix {
    max-width: 32%;
  }

  .media-card.media-card-rich-fix .media-card_image {
    margin: 0 auto 1rem;
  }

  .media-card.media-card-rich-fix .media-card_title,
  .media-card.media-card-rich-fix .media-card_text {
    position: static;
  }
}


/*--- rounded-arrow_btn ---*/
.rounded-arrow_btn {
  position: relative;
  width: 12.5rem;
  min-width: 200px;
  border: 1px solid #F0A3B4;
  border-radius: 100px;
  padding: 0.769em 0;
  font-size: 81.25%;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.23;
  background-color: #FFF;
  z-index: 1;
}

.rounded-arrow_btn::before {
  position: absolute;
  content: '';
  width: 1em;
  height: 1em;
  aspect-ratio: 1/1;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #FFF;
  z-index: 2;
}

.rounded-arrow_btn::after {
  position: absolute;
  content: '';
  width: 1em;
  height: 1em;
  aspect-ratio: 1/1;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background-color: #F0A3B4;
  background-image: none;
  mask: url(/img/jh/common/arrow_right-round.svg) no-repeat 55% center;
  mask-size: 1em;
  z-index: 3;
}

.rounded-arrow_btn a {
  display: block;
}

@media (min-width: 768px) {
  .rounded-arrow_btn {
    min-width: 15.28rem;
    font-size: 87.5%;
  }
}


/*--- fukidashi-title ---*/
.fukidashi-title_wrap {
  margin-right: auto;
  margin-left: auto;
}

.fukidashi-title_wrap p {
  margin-bottom: 1em;
  font-size: 75%;
  text-align: center;
  color: #4B9BDC;
}

#page .entry-content h2.fukidashi-title,
.fukidashi-title {
  position: relative;
  padding: 0.75em 2.5em 1em;
  border-radius: 1.25em;
  border: 1px solid #E4737E;
  font-size: 100%;
  line-height: 1;
  text-align: center;
  color: #FFF;
  background-color: #E4737E;
}

.fukidashi-title::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #E4737E;
}

@media (min-width: 768px) {
  .fukidashi-title_wrap p {
    font-size: 125%;
  }

  #page .entry-content h2.fukidashi-title,
  .fukidashi-title {
    font-size: 150%;
  }

}



/*--- voice-card ---*/
.voice-card_wrap {
  padding: 2.5rem 1.56rem 1rem;
  background-color: #F7F7F7;
}

#page .entry-content h2.voice-card_type,
.voice-card_type {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.81rem;
  width: 69.6%;
  text-align: center;
}

.voice-card_item {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2.12rem;
  border-radius: 0.5rem;
  max-width: 280px;
  background-color: #FFFDDF;
}

.voice-card_title {
  position: relative;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.voice-student .voice-card_title {
  background-color: #CAEAFF;
}

.voice-OG .voice-card_title {
  background-color: #FFDDE4;
}

.voice-teacher .voice-card_title {
  background-color: #CAF1D2;
}

.voice-card_course {
  font-size: 56.2%;
}

.voice-card_name {
  margin-bottom: 0;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.4;
}

.voice-card_honorifics {
  font-size: 62.5%;
}

.voice-card_career {
  margin-top: 0.3em;
  font-size: 43.75%;
}

.voice-card_img {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 4.375rem;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.voice-card_message {
  padding: 1.25rem 1.25rem 0.93rem;
  font-size: 75%;
}

@media screen and (min-width: 768px) {
  .voice-card_item {
    margin-right: auto;
    margin-left: auto;
    width: 75%;
    max-width: 675px;
  }

  .voice-card_title {
    padding: 1.5rem 3rem;
  }

  .voice-card_name {
    font-size: 131%;
  }

  .voice-card_course {
    margin-right: 1em;
    font-size: 56%;
  }

  .voice-card_career {
    font-size: 62.5%;
  }

  .voice-card_img {
    top: unset;
    bottom: 0.68rem;
    right: 2.25rem;
    width: 5.93rem;
  }

  .voice-card_message {
    width: 100%;
    padding: 1.5rem 2.25rem 1.5rem 3rem;
    font-size: 87.5%;
  }
}


/*------------------------------------------
  XXXX
--------------------------------------------*/

@media (min-width: 992px) {}

@media (max-width: 991px) {}

@media (min-width: 768px) {}

@media (max-width: 767px) {}