@charset "utf-8";

/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
:root {
  --main: #b11e2f;
  --sub: #123468;
  --hover: #92785f;
}
img {
  display: block;
}

/* レイアウト */
.pc #main_col {
  padding-bottom: 100px;
}

/* ----------------------------------------------------------------------
 共通
---------------------------------------------------------------------- */
/* SPグロナビ開閉対策 */
/*
.mobile.open_menu .home #container{
    pointer-events: none;
}

.mobile.open_menu #header_slider_wrap{
    pointer-events: none;
}
#mobile_menu{
    pointer-events: auto;
}
*/
/* お問い合わせ */
.contact {
  padding: 50px 0;
  background-color: var(--sub);
}
.contact_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 900px;
  min-height: 230px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #fff;
  color: var(--main);
  font-size: 20px;
  line-height: 1.6;
}
.contact .desc {
  margin-bottom: 30px;
}
@media screen and (max-width: 950px) {
  .contact {
    padding: 50px 30px;
  }
  .contact_inner {
    width: auto;
  }
}
@media screen and (max-width: 750px) {
  .contact {
    padding: 30px 20px;
  }
  .contact .desc {
    margin-bottom: 20px;
  }
}

/* CTA */
.cta_button {
  display: block;
  padding: 1em 3em 1em 1.5em;
  border-radius: 10rem;
  background-color: #ef9423;
  background-image: url("/wp/wp-content/assets/img/common/button_mark.svg");
  background-position: calc(100% - 1em) 50%;
  background-repeat: no-repeat;
  background-size: 1.5em auto;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.4));
  color: #fff;
  font-weight: 700;
  font-size: 1.11rem;
  line-height: 1.2;
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.cta_button:hover {
  opacity: .7;
  text-decoration: none;
}

/* ドロワーメニュー CTA表示 */
#mobile_menu {
  display: flex;
  flex-direction: column;
}
#mobile_menu .cta_button_wrap {
  width: 100%;
  margin-top: auto;
  padding: 20px;
  box-sizing: border-box;
}
.pc #mobile_menu .cta_button_wrap {
  display: none;
}

/* ----------------------------------------------------------------------
 headline - 見出しのスタイル
---------------------------------------------------------------------- */
.post_content h2:not([class]),
.style2a,
.post_content h3:not([class]),
.style3a,
.post_content h4:not([class]),
.style4a,
.post_content h5:not([class]),
.style5a {
  margin: 65px 0 30px !important;
  border: none;
  font-weight: 700 !important;
  line-height: 1.6;
}
.post_content h2:not([class]),
.style2a {
  position: relative;
  padding: .48em 1em .47em !important;
  background-color: var(--sub);
  color: #fff;
  font-size: 26px !important;
}
.post_content h2:not([class])::after,
.style2a::after {
  display: block;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  position: absolute;
  left: 20px;
  bottom: -18px;
  width: 28px;
  height: 20px;
  background-color: var(--sub);
  content: "";
}
.post_content h3:not([class]),
.style3a {
  position: relative;
  padding: 1.2em .15em !important;
  color: var(--sub);
  font-size: 22px !important;
}
.post_content h3:not([class])::before,
.style3a::before,
.post_content h3:not([class])::after,
.style3a::after {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(45deg, #9a0000, #fff);
  content: "";
}
.post_content h3:not([class])::before,
.style3a::before {
  top: 0;
}
.post_content h3:not([class])::after,
.style3a::after {
  bottom: 0;
}
.post_content h4:not([class]),
.style4a {
  position: relative;
  padding: .6em 1em .6em 1.8em !important;
  background-color: #e4ebf7;
  color: var(--sub);
  font-size: 20px !important;
}
.post_content h4:not([class])::before,
.style4a::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 3px;
  height: 45%;
  background-color: #9a0000;
  content: "";
  transform: translateY(-50%);
}
.post_content h5:not([class]),
.style5a {
  position: relative;
  padding: 0 0 0 40px !important;
  background: transparent;
  color: var(--sub);
  font-size: 18px !important;
}
.post_content h5:not([class])::before,
.style5a::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--sub);
  content: "";
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .post_content h2:not([class]),
  .style2a,
  .post_content h3:not([class]),
  .style3a,
  .post_content h4:not([class]),
  .style4a,
  .post_content h5:not([class]),
  .style5a {
    margin: 30px 0 20px !important;
  }
  .post_content h2:not([class]),
  .style2a {
    padding: .42em .7em .41em !important;
    font-size: 20px !important;
  }
  .post_content h2:not([class])::after,
  .style2a::after {
    left: 16px;
    bottom: -14px;
    width: 24px;
    height: 16px;
  }
  .post_content h3:not([class]),
  .style3a {
    padding: .6em .15em !important;
    font-size: 18px !important;
  }
  .post_content h4:not([class]),
  .style4a {
    padding: .6em 1em .6em 1.8em !important;
    font-size: 16px !important;
  }
  .post_content h4:not([class])::before,
  .style4a::before {
    left: 16px;
    width: 2px;
  }
  .post_content h5:not([class]),
  .style5a {
    padding: 0 0 0 33px !important;
    font-size: 15px !important;
  }
  .post_content h5:not([class])::before,
  .style5a::before {
    width: 25px;
  }
}

/* ----------------------------------------------------------------------
 パンくず　HOMEの設定
---------------------------------------------------------------------- */
#bread_crumb li.home a {
  text-indent:0 !important;
  overflow:inherit !important;
  width:auto !important;
  height:13px;
  display:inline-block;
  top:0 !important;
  position:relative;
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}
#bread_crumb li.home a:before {
  content: none !important;
}


/* ----------------------------------------------------------------------
 トップページ
---------------------------------------------------------------------- */
#header_slider_wrap {
  height: 880px;
}
.mobile #header_slider_wrap {
  height: 730px;
}
@media screen and (max-width: 750px) {
  .mobile #header_slider_wrap {
    height: auto;
  }
}
.pc #header_slider .item {
  height: 780px;
}
/*
#header_slider .item { height:630px; }
@media screen and (max-width:750px) {
  #header_slider .item { height:480px; }
}
*/
/* スライダー */
#header_slider {
  height: 780px;
}
.mobile #header_slider {
  height: 630px;
}
.mobile #header_slider .item {
  height: 630px;
}
@media screen and (max-width: 750px) {
  .mobile #header_slider {
    height: 550px;
    height: 73.3333333333vw;
  }
  .mobile #header_slider .item {
    height: 550px;
    height: 73.3333333333vw;
  }
}

/* 検索エリア */
#header_slider_wrap .search_area {
  width: 100%;
  height: 100px;
  margin: 0;
  background-color: var(--sub);
}
@media screen and (max-width: 950px) {
  #header_slider_wrap .search_area {
    max-width: unset;
  }
}
@media screen and (max-width: 750px) {
  #header_slider_wrap .search_area {
    height: auto;
  }
}
#header_slider_wrap .search_area form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6%;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
  height: 100%;
}
.mobile #header_slider_wrap .search_area form {
  max-width: unset;
}
@media screen and (max-width: 750px) {
  #header_slider_wrap .search_area form {
    flex-direction: column;
    gap: 0;
    padding: 25px 20px;
  }
}
#header_slider_wrap .search_input {
  display: flex;
  align-items: center;
  position: relative;
  width: 25%;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  #header_slider_wrap .search_input {
    width: 100%;
    margin-bottom: 12px;
  }
}
#header_slider_wrap .search_input::after {
  display: block;
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  color: var(--main);
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  font-family: 'design_plus';
  text-align: center;
  content: "\e90e";
  pointer-events: none;
}
#header_slider_wrap .search_input select {
  width: 100%;
  height: 50px;
  padding: 15px 16px;
  font-size: 14px;
  line-height: 1;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 10px;
  appearance: none;
  cursor: pointer;
}
#header_slider_wrap .search_input select option {
  width: 100%;
  color: #000;
}
#header_slider_wrap .search_input select:focus {
  color: var(--hover);
}
#header_slider_wrap .search_button {
  width: 16%;
}
@media screen and (max-width: 750px) {
  #header_slider_wrap .search_button {
    width: 220px;
    margin-top: 25px;
  }
}
#header_slider_wrap .search_button input {
  position: absolute;
  right: 0px;
  top: 0px;
  overflow: hidden;
  border: none;
  background: none;
  width: 50px;
  height: 50px;
  text-indent: -300px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#header_slider_wrap .search_button input {
  width: 100%;
  height: 50px;
  position: static;
  border: 1px solid #fff;
  border-radius: 25px;
  background-color: var(--main);
  color: #fff;
  font-size: 14px;
  text-indent: 0;
}
#header_slider_wrap .search_button input:hover {
  background-color: var(--hover);
}
#header_slider_wrap .search_button label:before {
  content: unset;
}

/* seatch&filter */
.searchandfilter select {
  width: 25vw;
  max-width: 240px;
  height: 50px;
  padding: 15px 16px;
  font-size: 14px;
  line-height: 1;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 10px;
  appearance: none;
  cursor: pointer;
}
.searchandfilter li {
  position: relative;
}
.searchandfilter li::after {
  display: block;
  position: absolute;
  right: 20px;
  top: 16px;
  width: 20px;
  height: 20px;
  color: var(--main);
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  font-family: 'design_plus';
  text-align: center;
  content: "\e90e";
  pointer-events: none;
}
.searchandfilter li:nth-child(3)::after {
  content: none;
}

.searchandfilter select:focus {
  color: var(--hover);
}
.searchandfilter input[type="submit"] {
  width: 16vw;
  max-width: 200px;
  height: 50px;
  position: static;
  border: 1px solid #fff;
  border-radius: 25px;
  background-color: var(--main);
  color: #fff;
  font-size: 14px;
  text-indent: 0;
}
.searchandfilter input[type="submit"]:hover {
  background-color: var(--hover);
}

@media screen and (max-width: 750px) {
  .searchandfilter div {
    display: block;
    width: 100%;
  }
  .searchandfilter ul {
    display: block;
    width: 100%;
  }
  .searchandfilter li {
    display: block;
    width: 100%;
    text-align: center;
  }
  .searchandfilter select {
    width: 100%;
    margin-bottom: 12px;
    max-width: inherit;
  }
  .searchandfilter input[type="submit"] {
    width: 220px;
    margin-top: 20px;
  }
}


/* ----------------------------------------------------------------------
 トップページ（コンテンツ）
---------------------------------------------------------------------- */
.pc #index_content {
  padding-top: 50px;
}
.pc #index_content .index_content:last-of-type:last-of-type {
  padding-bottom: 100px;
}
.pc .index_content {
  padding-bottom: 100px;
}
.mobile .index_content {
  padding-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .mobile .index_content {
    padding-bottom: 30px;
  }
}
.bg_gray {
  background-color: #f5f5f5;
}

/* フリースペース */
.pc #index_free_space {
  width: 100%;
  padding: 0;
}

/* キャッチフレーズ */
/*
.index_cb_catch .catch {
  margin-bottom: 0;
  font-size: 40px;
}
*/
.index_cb_catch .catch + .desc {
  margin-top: 8px;
}
.index_cb_catch_h3 { text-align:center; padding:1em 0 0.5em; }
.index_cb_catch_h3 .catch_h3 {
  margin-bottom: 0;
  font-size: 28px;
}
@media screen and (max-width:950px) {
  #index_shop_list .index_cb_catch_h3 .catch_h3 { font-size:20px; }
}
@media screen and (max-width: 750px) {
  #index_shop_list .index_cb_catch_h3 .catch_h3 { font-size:18px; }
}


/* アーカイブボタン */
.index_cb_button a {
  min-width: 350px;
  height: 68px;
  line-height: 68px;
  border-radius: 34px;
  background-color: var(--main);
  font-size: 18px;
}
.index_cb_button a:hover {
  background-color: var(--hover);
}
.index_cb_button.big a {
  min-width: 540px;
}
@media screen and (max-width: 750px) {
  .index_cb_button a,
  .index_cb_button.big a {
    min-width: 275px;
    height: 60px;
    line-height: 60px;
  }
}

/* バナースライダー */
.bnr_slider_wrap {
  padding-bottom: 52px;
}
.bnr_slider img {
  width: 100%;
  height: auto;
}
.bnr_slider .slick-slide {
  position: relative;
}
.bnr_slider .slick-slide::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
.bnr_slider .slick-current::before {
  content: unset;
}
.bnr_slider .slick-prev,
.bnr_slider .slick-next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  padding: 0;
  border: none;
  border-radius: 50%;
  outline: none;
  background: transparent;
  background-color: #fff;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.bnr_slider .slick-prev:hover,
.bnr_slider .slick-prev:focus,
.bnr_slider .slick-next:hover,
.bnr_slider .slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.bnr_slider .slick-prev {
  left: calc(26% - 2.0833333333vw / 2);
}
.bnr_slider .slick-next {
  right: calc(26% - 2.0833333333vw / 2);
}
.bnr_slider .slick-prev::before,
.bnr_slider .slick-next:before {
  display: block;
  opacity: 1;
  color: var(--main);
  font-weight: 700;
  font-size: 1.0416666667vw;
  font-family: "design_plus";
  line-height: 2;
}
.bnr_slider .slick-prev::before {
  content: "\e90f";
}
.bnr_slider .slick-next::before {
  content: "\e910";
}
.bnr_slider .slick-dots {
  position: absolute;
  bottom: -32px;
  z-index: 10;
  width: 100%;
  font-size: 0;
  text-align: center;
}
.bnr_slider .slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 4px;
  font-size: 12px;
}
.bnr_slider .slick-dots button {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
  border: none;
  color: transparent;
  background: none;
  font-size: 0;
  cursor: pointer;
}
.bnr_slider .slick-dots button::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  line-height: 12px;
  background-color: #ccc;
  border-radius: 20px;
  content: "";
}
.bnr_slider .slick-dots button:hover::before,
.bnr_slider .slick-dots .slick-active button::before {
  background-color: var(--main);
}

/* バナーカルーセル */
#header_carousel .image {
  width: 100% !important;
}
#header_carousel .title {
  display: none;
}

/* NEWS */
.news_list {
  font-size: 16px;
}
.news_list ul {
  width: 1180px;
  margin: 0 auto 55px;
  border-top: 1px solid #e0e0e0;
}
.news_list li a {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  min-height: 70px;
  border-bottom: 1px solid #e0e0e0;
  color: #000;
  line-height: 2;
}
.news_list li a time {
  display: block;
  color: var(--main);
  font-size: 14px;
}
.news_list li a span {
  display: block;
}
.news_list li a:hover {
  color: var(--hover);
}
.mobile .news_list ul {
  width: auto;
  margin: 0 30px 46px;
}
@media screen and (max-width: 750px) {
  .mobile .news_list ul {
    margin: 0 20px 26px;
  }
}

/* 留学先から選ぶ */
#shop_category_list .image img {
  object-fit: cover;
  min-height: 290px;
}
@media screen and (max-width:950px) {
  #shop_category_list .image {
    max-height: 240px;
  }
  #shop_category_list .image img {
    min-height: 240px;
  }
}
@media screen and (max-width:750px) {
  #shop_category_list .image {
    max-height: 200px;
  }
  #shop_category_list .image img {
    min-height: 200px;
  }
}
@media screen and (max-width:500px) {
}


/* 留学先から選ぶ 留学時期から選ぶ */
#find_list a:before {
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
#find_list .title_area .title {
  font-size: 26px;
  text-align: center;
}
#index_area #find_list .title_area {
  padding: 5px;
}
.pc #index_content #index_season {
  padding-bottom: 0;
}
#index_season #find_list {
  margin-bottom: 0;
}
#index_season #find_list .title_area_inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 170px;
}

/* K Villageオリジナルプランから選ぶ */
#learn_list .title_area {
  background-color: var(--sub);
}
#learn_list .title_area:before {
  border-color: transparent var(--sub) transparent transparent;
}
#learn_list .title_area .title span {
  padding-left: 10px;
  font-size: 16px;
}
#learn_list .item:nth-child(even) .title_area {
  background-color: var(--main);
}
#learn_list .item:nth-child(even) .title_area:before {
  border-color: transparent transparent transparent var(--main);
}

/* 韓国留学の特徴・メリット */
.feature * {
  box-sizing: border-box;
}
.feature {
  position: relative;
  background: url(/wp/wp-content/uploads/2024/09/bg_feature.jpg) no-repeat center;
  background-size: cover;
}
.feature::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
.feature .index_cb_catch {
  position: relative;
  z-index: 2;
  color: #fff;
}
.feature .feature_inner {
  position: relative;
  z-index: 3;
  width: 900px;
  margin: 0 auto;
  padding: 50px;
  background-image: url(/wp/wp-content/assets/img/top/icon_feature-l.svg), url(/wp/wp-content/assets/img/top/icon_feature-r.svg);
  background-position: left 10px top 10px, right 10px top 10px;
  background-repeat: no-repeat;
  font-size: 16px;
  line-height: 2.3;
}
.mobile .feature .feature_inner {
  width: auto;
  margin: 0 30px;
}
.feature .feature_inner::after {
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url(/wp/wp-content/assets/img/top/icon_feature-l.svg), url(/wp/wp-content/assets/img/top/icon_feature-r.svg);
  background-position: left 10px top 10px, right 10px top 10px;
  background-repeat: no-repeat;
  width: 100%;
  height: 50%;
  content: "";
}
@media screen and (max-width: 750px) {
  .mobile .feature .feature_inner {
    margin: 0 20px;
  }
  .mobile .feature .feature_inner,
  .feature .feature_inner::after {
    background-size: 40px auto;
  }
}

/* 韓国留学に関するよくある質問 */
.find_faq_list {
  width: 900px;
  margin: 0 auto 55px;
}
.mobile .find_faq_list {
  margin-bottom: 46px;
}
@media screen and (max-width: 950px) {
  .mobile .find_faq_list {
    width: auto;
    margin: 0 30px 46px;
  }
}
@media screen and (max-width: 750px) {
  .mobile .find_faq_list {
    margin: 0 20px 26px;
  }
}
.find_faq_list dt::before,
.find_faq_list dt:hover::before {
  color: var(--main);
  font-weight: bold;
  font-size: 20px;
}

#yt_movie {
  margin: 0 auto;
  text-align: center;
}

/* ----------------------------------------------------------------------
 詳細ページ
---------------------------------------------------------------------- */
/* アイキャッチ画像*/
#post_image {
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  #post_image {
    margin-bottom: 20px;
  }
}

#post_title_area .category a {
  background-color: var(--sub);
}
#post_title_area .category a:hover {
  background-color: var(--hover) !important;
}
.table_of_contents {
  background-color: #fafafa;
  line-height: 2;
}
.table_of_contents .title {
  margin-bottom: 10px;
  color: var(--sub);
  font-size: 20px;
}
.table_of_contents .list {
  font-size: 16px;
}
.table_of_contents .list a {
  color: #000;
}
.table_of_contents .list li {
  margin-bottom: 5px;
}
.table_of_contents .list li::before {
  display: inline-block;
  content: "・";
}
.table_of_contents .list li:last-of-type {
  margin-bottom: 0;
}
.title_main {
  font-size: 28px !important;
}
.post_content p:last-of-type {
  margin-bottom: 0;
}
.title_sub {
  display: block;
  position: relative;
  margin-bottom: 30px;
  padding-left: 50px;
  color: var(--sub);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.7;
}
.title_sub::before {
  display: inline-block;
  position: absolute;
  top: calc(1.7em / 2 - 1.5px);
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--sub);
  content: "";
}

/* Google Map */
#access_google_map {
  height: 460px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  #access_google_map {
    height: 320px;
  }
}

/* 画像スライダー */
#shop_image_slider {
  margin-bottom: 40px;
}
.pc #shop_image_slider,
.pc #shop_image_slider .image {
  width: 100%;
}
@media screen and (max-width: 750px) {
  #shop_image_slider {
    margin-inline: auto;
  }
  #shop_image_slider .slick-dots {
    bottom: -20px;
  }
  #shop_image_slider .slick-dots button::before {
    border: 1px solid #707070;
  }
}

/* 授業風景 */
.img_wrap img {
  width: 100%;
  height: auto;
}

/* 留学スケジュール */
.ds_sp {
  display: none;
}
.post_content th {
  text-align: center;
}
.post_content th,
.post_content td {
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .post_content th,
  .post_content td {
    padding: 5px;
    font-size: 12px;
    line-height: 1.6;
  }
  .ds_sp {
    display: block;
  }
}

/* Cardlink style - カードリンクのスタイル */
.cardlink_title a {
  color: var(--main);
}
.cardlink_title a:hover {
  color: var(--hover) !important;
}

/* 関連記事 */
#related_post .headline {
  background-color: var(--sub);
}
#related_post .item .title span {
  color: var(--main);
}


/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
/* ロゴ */
#header_logo img {
  width: 70%;
  max-height: 30px;
  height: auto;
}
.mobile #header_logo img {
  width: auto;
  max-height: 20px;
}
#header_logo .desc {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* グローバルメニュー */
.pc #global_menu ul ul a,
.mobile #mobile_menu,
.mobile #global_menu a {
  background-color: #b69e84;
}
.pc #global_menu ul ul a:hover,
.mobile #global_menu a:hover {
  background-color: var(--hover);
}
.pc .header_fix #global_menu > ul > li > a:after,
#mobile_menu #global_menu .child_menu_button:hover {
  background-color: var(--main);
}

/* ヘッダーボタン */
.header_cb_button {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 40;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.mobile .header_cb_button {
  display: none;
}
.header_cb_button a {
  display: inline-block;
  min-width: 160px;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: var(--main);
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.header_cb_button a:hover {
  color: #fff;
  background-color: var(--hover);
}

/* ----------------------------------------------------------------------
 フッター
---------------------------------------------------------------------- */
/* メニュー */
#footer_menu_area a:hover {
  color: var(--hover) !important;
}
#footer_find_list li,
#footer_shop_category_list li {
  width: auto;
  float: none;
}

/* コピーライト */
#copyright {
  background-color: var(--sub);
}
@media screen and (max-width: 750px) {
  #copyright {
    display: flex;
    align-items: center;
    padding-right: 55px;
    line-height: 1.4;
  }
}

/* ページ上部へ戻るボタン */
#return_top a {
  background-color: var(--main);
  opacity: 0.75;
}
#return_top {
  bottom:16px;
}

/* ----------------------------------------------------------------------
 ウィジェット
---------------------------------------------------------------------- */
/* 基本設定 */
.side_headline {
  border-left-color: var(--main);
}

/* デザインされた記事一覧1 */
.styled_post_list1 .title_area {
  padding: 15px 14px;
}
.styled_post_list2 .title_area {
  padding: 15px 14px;
}

/* ----------------------------------------------------------------------
 プラン一覧
---------------------------------------------------------------------- */
.pc .archive #blog_list .image img {
  width: auto;
  height: 290px;
}
.pc .blog #blog_list .image img {
  width: auto;
  height: 290px;
}

/* ----------------------------------------------------------------------
 プラン詳細
---------------------------------------------------------------------- */
.single_plan td.level_test_date {
  text-align: right;
}
.single_plan td.deadline_date {
  text-align: right;
  white-space: nowrap;
}
.single_plan td.period {
  text-align: right;
}
.single_plan th {
  white-space: nowrap;
}
.single_plan td, .single_plan th {
  padding: 6px !important;
}

/* ----------------------------------------------------------------------
 留学先一覧
---------------------------------------------------------------------- */
.pc .archive #shop_list2 .image img {
  width: auto;
  height: 290px;
}

/* ----------------------------------------------------------------------
 留学先詳細
---------------------------------------------------------------------- */
.pc #next_prev_post2 .image img {
  height: 100%;
  /*width: auto;*/
  object-fit: cover;
}
.mobile .archive #shop_list2 .image img {
  height: 250px;
  /*width: auto;*/
  object-fit: cover;
}
@media screen and (max-width:950px) {
  .mobile .archive #shop_list2 .image img {
    height: 270px;
  }
}
@media screen and (max-width:750px) {
  .mobile .archive #shop_list2 .image img {
    height: 280px;
  }
}
@media screen and (max-width:500px) {
  .mobile .archive #shop_list2 .image img {
    height: 220px;
  }
}


/* ----------------------------------------------------------------------
 よくある質問　プラグイン利用
---------------------------------------------------------------------- */
#eckb-article-content-title-container h1.eckb-article-title {
  font-size: 1.5em !important;
  line-height: 1.4 !important;
}

div#eckb-article-content-footer {
  margin-top: 50px;
  background: #f7f7f7;
}

div#eckb-article-content-body {
  line-height: 2;
  font-size: 1em;
}
div#eckb-article-content-body li {
  padding-bottom: 1em;
}

h2.eckb-article-title.style2a {
  margin-top: 20px !important;
  line-height: 1.4;
}
.eckb-breadcrumb-link a:hover span,
.eckb-breadcrumb-link a:active span {
  color: #aaa !important;
}
.eckb-article-header {
  border-bottom: solid #dcdcdc 1px !important;
}
.eckb-article-container {
  margin-bottom: 10px !important;
}

/* ----------------------------------------------------------------------
 20250107追加　サムネイル画像サイズの調整
---------------------------------------------------------------------- */
#blog_list .item {
  height: auto !important;
}
#blog_list .item.no_data {
  height: auto !important;
}
#blog_list .image {
  height: auto;
}
#blog_list .image img {
  max-height: 174px;
  object-fit: cover;
  aspect-ratio: 5 / 3;
}
.pc .archive #blog_list .image img {
  width: 100%;
  height: auto;
  max-height: 174px;
  object-fit: cover;
  aspect-ratio: 5 / 3;
}

/* ----------------------------------------------------------------------
 20250307追加　提携宿泊先一覧
---------------------------------------------------------------------- */
#hotel_list{
  margin: 80px auto 0;
  line-height: 2.3;
  font-size: 16px;
}
#hotel_list .toc{
  background-color: #F5F5F5;
  border: 1px solid #DDDDDD;
  padding: 40px 35px;
  margin-bottom: 80px;
}
#hotel_list .toc-title{
  color: #123468;
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

#hotel_list .toc ol{
	list-style: auto inside;
    font-size: 20px;
	text-decoration: underline;
}
#hotel_list .hotel_list_content{
	margin-bottom: 80px;
}
#hotel_list .hotel_list_content p{
	margin-bottom: 30px;
}
#hotel_list .hotel_list_content .image{
	margin: 50px 0 30px;
}
#hotel_list .hotel_list_content .image img{
	width: 100%;
    height: 480px;
    object-fit: cover;
}
#archive-hotel_image_slider {
    position: relative;
}
#archive-hotel_image_slider .slick-slide{
	width:100%;
	height: 480px;
}

#archive-hotel_image_slider .slick-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#archive-hotel_image_slider .slick-arrow{
	cursor: pointer;
    border: none;
    color: transparent;
    width: 32px;
    height: 32px;
    display: inline-block;
    font-size: 0;
    background: #A21412;
    position: absolute;
    top: 45%;
    z-index: 10;
    border-radius: 50%;
}
#archive-hotel_image_slider .slick-prev{
	left: 10px;
}
#archive-hotel_image_slider .slick-next{
	right: 10px;
}
#archive-hotel_image_slider .slick-prev::before, 
#archive-hotel_image_slider .slick-next::before {
	content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: 2px solid #fff;
	position: absolute;
}

#archive-hotel_image_slider .slick-prev::before{
    left: 12px;
    top: 9.5px;
    transform: rotate(-135deg);
}
#archive-hotel_image_slider .slick-next::before {
    right: 12px;
    top: 9.5px;
    transform: rotate(45deg);
}

#archive-hotel_image_slider .slick-dots{
	display: flex;
    font-size: 0;
    margin-top: 15px;
    border: none;
    background: none;
    color: transparent;
    justify-content: center;
}
#archive-hotel_image_slider .slick-dots li{
    margin: 0 7px;
    width: 12px;
    height: 12px;
}
#archive-hotel_image_slider .slick-dots li button{
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 50%;
    border: 1px solid #707070;
    padding: 0;
    background-color: #fff;
}

#archive-hotel_image_slider .slick-dots li.slick-active button{
    background: #AAA;
}

@media screen and (max-width: 750px){
	#hotel_list{
		margin: 0;
		font-size: 13px;
	}
	#hotel_list .toc{
		padding: 20px;
		margin-bottom: 40px;
	}
	#hotel_list .toc-title{
		font-size: 20px;
		margin-bottom: 20px;
	}
	#hotel_list .toc ol{
		font-size: 14px;
	}
	#hotel_list .hotel_list_content{
		margin-bottom: 50px;
	}
	#hotel_list .hotel_list_content p{
		margin-bottom: 30px;
	}
	#hotel_list .hotel_list_content .image{
		margin: 25px 0
	}
	#hotel_list .hotel_list_content .image img{
		height: 280px;
	}
	#archive-hotel_image_slider .slick-slide{
		height: 280px;
	}
  #archive-hotel_image_slider .slick-arrow{
		top: 40%
	}
}

/* ----------------------------------------------------------------------
 20250310追加　提携宿泊先詳細（スライダー）
---------------------------------------------------------------------- */
@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
#single-hotel_image_slider01 .single-hotel_image_slider01__wrap {
  display: flex;
  overflow: hidden;
}
#single-hotel_image_slider01 .single-hotel_image_slider01__wrap ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

#single-hotel_image_slider01 .single-hotel_image_slider01__wrap ul li {
  width: 420px;
  height: 254px;
  padding-right: 20px;
}
#single-hotel_image_slider01 .single-hotel_image_slider01__wrap ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-hotel__map{
  width: 100%;
  height: 400px;
}
.single-hotel__map > iframe{
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 750px){
	#single-hotel_image_slider01 .single-hotel_image_slider01__wrap ul li {
		width: 300px;
		height: 200px;
		padding-right: 20px;
	}
	.single-hotel__map{
		width: 100%;
		height: 223px;
	}
}

#single-hotel_mv_slider {
    position: relative;
}
#single-hotel_mv_slider  .slick-box {
    position: relative;
}
#single-hotel_mv_slider .slick-box .slick-slide {
    width: 100%;
    height: 460px;
}
#single-hotel_mv_slider .slick-box .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#single-hotel_mv_slider .slick-arrow {
    cursor: pointer;
    border: none;
    color: transparent;
    width: 32px;
    height: 32px;
    display: inline-block;
    font-size: 0;
    background: #A21412;
    position: absolute;
    top: 45%;
    z-index: 10;
    border-radius: 50%;
}
#single-hotel_mv_slider .slick-prev {
    left: 10px;
}
#single-hotel_mv_slider .slick-next {
    right: 10px;
}
#single-hotel_mv_slider .slick-prev::before, #single-hotel_mv_slider .slick-next::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: 2px solid #fff;
    position: absolute;
}
#single-hotel_mv_slider .slick-prev::before {
    left: 12px;
    top: 9.5px;
    transform: rotate(-135deg);
}
#single-hotel_mv_slider .slick-next::before {
    right: 12px;
    top: 9.5px;
    transform: rotate(45deg);
}
#single-hotel_mv_slider .caption-box {
    padding: 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
#single-hotel_mv_slider .dots-box .slick-dots {
    display: flex;
    font-size: 0;
    margin-top: 15px;
    border: none;
    background: none;
    color: transparent;
    justify-content: center;
}
#single-hotel_mv_slider .dots-box .slick-dots li {
    margin: 0 7px;
    width: 12px;
    height: 12px;
}
#single-hotel_mv_slider .dots-box .slick-dots li button {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 50%;
    border: 1px solid #707070;
    padding: 0;
    background-color: #fff;
}
#single-hotel_mv_slider .dots-box .slick-dots li.slick-active button{
    background: #AAA;
}
@media screen and (max-width: 750px){
  #single-hotel_mv_slider .slick-box .slick-slide{
      height: 203px;
  }
  #single-hotel_mv_slider .caption-box {
      padding: 15px;
  }
}

/* ----------------------------------------------------------------------
 20250606 CTAに色変更と光エフェクト
---------------------------------------------------------------------- */
.header_cb_button a,
.contact .index_cb_button a{
  background-color: #ef9423;
  background-image: linear-gradient(
    280deg,
    #ef9423 45%,
    #fff 50%,
    #ef9423 55%
  );
  background-size: 500% 100%;
  animation: shine 3s infinite;
}
.header_cb_button a:hover,
.contact .index_cb_button a:hover {
  background-image: linear-gradient(
    280deg,
    #f2a950 45%,
    #fff 50%,
    #f2a950 55%
  );
}
#mobile_menu .cta_button,
.sp_footer_button a{
  position:relative;
}
#mobile_menu .cta_button:hover,
.sp_footer_button a:hover{
  background-color: #f2a950;
}
#mobile_menu .cta_button::after,
.sp_footer_button a::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    280deg,
    transparent 45%,
    #fff 50%,
    transparent 55%
  );
  background-size: 500% 100%;
  animation: shine 3s infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10rem;
}

@keyframes shine {
  100% {
    background-position: 0% 50%;
  }
  0% {
    background-position: 100% 50%;
  }
}

/* ----------------------------------------------------------------------
 20250610 モバイルメニューの強弱
---------------------------------------------------------------------- */
@media screen and (max-width: 750px){
  #mobile_menu #global_menu a[href="https://kankokuryugakuguide.com/voice/"],
  #mobile_menu #global_menu a[href="https://kankokuryugakuguide.com/koreablog/"],
  #mobile_menu #global_menu a[href="https://kankokuryugakuguide.com/faq/"]{
    font-size: 0.7rem;
  }
}

/* ----------------------------------------------------------------------
 20250723  モバイルメニューにSNSボタン追加
---------------------------------------------------------------------- */
.pc #mobile_menu .sns_button__wrap{
  display: none;
}
#mobile_menu .sns_button__wrap{
  width: 100%;
  box-sizing: border-box;
}
#mobile_menu .sns_button__list{
  margin: 0;
  padding: 18px 20px;
  display: flex;
}
#mobile_menu .sns_button{
  margin-right: 20px;
}
#mobile_menu .sns_button a{
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #fff;
}
#mobile_menu .sns_button a::before{
  font-family: 'design_plus';
  font-size: 15px;
  display: block;
  position: absolute;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#mobile_menu .sns_button.youtube a::before{
  font-family: 'footer_bar';
  content: "\ea9d";
}
#mobile_menu .sns_button.insta a::before{
  content: '\ea92';  
}
#mobile_menu .sns_button.twitter a::before{
  font-family: 'tiktok_x_icon';
  content: "\e901";  
}
#mobile_menu .sns_button a span{
  display: none;
}