@charset "UTF-8";
/*
 * Utility
 * -------------------------------------------------------------------
 */
/*
 * Base
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

/* テキストセンター */
.text-center {
  text-align: center;
}

/*ウィジェット区切り線*/
.widget-line {
  margin: 10px 0px;
  border-color: #dfdfdf;
  border-top-width: 1px;
  border-top-style: solid;
}

/*カテゴリーTOPタイトル画像*/
.catpage_content_wrap .cover {
  filter: blur(0px) brightness(70%);
  background-repeat: no-repeat;
  background-size: cover;
}

/* カテゴリーリンクテキストマウスオーバー　*/
.post-cat a:hover,
.post-cat-sp a:hover {
  color: #fff;
  font-weight: 700;
}

/*タイトル下ACF*/
.text-area-wrap {
  padding: 0px 0px 16px;
}

@media screen and (max-width: 480px) {
  .text-area-wrap {
    padding: 0px 0px 8px;
  }
}
/*ページ内共通*/
.content img {
  max-width: 100%;
  height: auto;
  margin: 0 0 0.6em 0;
}

.content p {
  padding: 0.5em 0px 2em !important;
}

.content .link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f2d2";
  margin-left: 4px;
}

.content h2 {
  padding: 0.2em 0.6em;
  background: #FFF !important;
  border-left: 8px solid #ea7e78;
  border-radius: 0px !important;
}

.content h3 {
  padding: 0.6em 0em !important;
  border-bottom: 2px solid #ffd4d2 !important;
  background: #FFF !important;
  border-radius: 0;
}

.content h4 {
  background: #FFF !important;
  padding-left: 0px !important;
  border-left: 6px solid #ffd4d2;
  padding: 0.2em 1em !important;
}

/*タイトル文字サイズ調整*/
@media screen and (max-width: 768px) {
  .post-title {
    font-size: 15px !important;
  }
}
/*太字（主にキャプション）*/
.content span {
  font-weight: 700 !important;
}

/*リストインデント*/
.content .indent ul {
  padding-left: 0em;
  margin-bottom: 0em;
}

.content .indent li {
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
}

.content .indent li:last-child {
  margin-bottom: 0em;
}

/*インフォ囲み*/
.content .info-01 {
  margin: 10px 0 20px;
  border: solid 1px #CFCFCF;
  border-radius: 20px;
  padding: 1.2em 1.8em;
  background: #f7f4ef;
  font-size: 90%;
}

.content .info-01 p {
  padding: 0.5em 0px !important;
}

/* 目次）アコーディオンメニュー */
.ac-index {
  width: 100%;
  font-size: 90%;
}

.ac-index input {
  display: none;
}

.ac-index input:checked + ul {
  display: block;
}

.ac-index ul {
  display: none;
  background: #F7F7F7;
  list-style: none;
  margin: 0;
  padding: 0 26px 16px;
}

.ac-index li {
  padding: 6px 0;
  border-bottom: solid 1px #cccccc;
}

.ac-index label {
  font-weight: 600;
  display: block;
  margin: 0;
  padding: 16px 26px 16px;
  background: #F7F7F7;
  cursor: pointer;
}

.ac-index label::before {
  font-family: "Font Awesome 6 Free";
  content: "\f15c";
  font-size: 15px;
  font-weight: 400;
  margin-right: 4px;
}

/* アンカーリンクずれ調整 */
a.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
  pointer-events: none;
}

@media screen and (max-width: 480px) {
  a.anchor {
    display: block;
    padding-top: 60px;
    margin-top: -60px;
  }
}
/*テーブル　パターン01*/
.tbl-01 {
  font-weight: 400;
  font-size: 98%;
  color: #333;
  width: 100%;
  margin: 20px auto;
  border: solid 1px #FFF;
}

.tbl-01 .link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f2d2";
  font-size: 15px;
  font-weight: 400;
  margin-left: 4px;
}

.tbl-01 th {
  border: solid 1px #FFF;
  background: #EDEDED;
  padding: 10px;
}

.tbl-01 td {
  color: #333;
  border: solid 1px #FFF;
  background: #F7F7F7;
  padding: 10px;
}

.tbl-01 p {
  padding: 0.5em 0px 0.5em !important;
}

@media screen and (max-width: 768px) {
  .tbl-01 th,
  .tbl-01 td {
    border: solid 1px #FFF;
    display: block;
    width: 100%;
  }
}
/* 画像キャプション */
.img-1column {
  margin-bottom: 1.666em;
}

figure {
  margin-bottom: 0.6em;
}

figcaption {
  text-align: center;
  font-size: 0.9em;
}

/* 公式リンク */
.official ul {
  margin: 0;
  padding: 0;
}

.official li {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 12px;
  font-size: 90%;
  font-weight: 600;
  color: #afafaf;
  border-radius: 6px;
  background: #fff;
  border: solid 2px #afafaf;
}

.official li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .official li {
    padding: 2px 6px;
  }
}
.official li a {
  color: #fff;
}

.official .web {
  background: #82942B;
  color: #fff;
  border-color: #82942B;
}

.official .twitter {
  /*blue #00b0eb*/
  background: #000000;
  color: #fff;
  border-color: #000000;
}

.official .facebook {
  background: #2c5c96;
  color: #fff;
  border-color: #2c5c96;
}

.official .instagram {
  background: #f5256c;
  color: #fff;
  border-color: #f5256c;
}

.official .youtube {
  background: #DA1725;
  color: #fff;
  border-color: #DA1725;
}

/*GoogleMapボタンリンク*/
.gmap-wrap {
  text-align: center;
  margin: 26px 0 18px;
  padding: 0;
}

a.gmap-btn {
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 16px;
  border: solid #c08828 2px;
  background: #ff9f2e;
  text-decoration: none;
  transition: 0.3s;
}

a.gmap-btn .b-text {
  display: block;
  flex-grow: 1;
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-right: 15px;
  font-size: 16px;
}

a.gmap-btn:hover {
  background-color: #ffaa34;
}

@media (max-width: 1200px) {
  a.gmap-btn .b-text {
    font-size: 18px;
  }
}
@media (max-width: 736px) {
  a.gmap-btn .b-text {
    font-size: 16px;
  }
}
/*タブウィジェットライン*/
.widget ul.d_tab_nav li.d_tab_active a {
  background-color: #fff;
  box-shadow: none;
  color: #012332;
  border-top: 4px solid #067665;
}

/*もっと見るボタン（タブウィジェットライン）*/
.more-wrap {
  margin: 20px 0 0;
  padding: 0;
}

a.more-btn {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border: 1px solid #067665;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a.more-btn:hover {
  background-color: #edf5f4;
}

a.more-btn .b-text {
  display: block;
  flex-grow: 1;
  color: #067665;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-right: 15px;
  font-size: 16px;
}

a.more-btn .b-text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-top: 3px solid #067665;
  border-right: 3px solid #067665;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  transition: 0.3s;
}

@media (max-width: 1200px) {
  a.more-btn .b-text {
    font-size: 18px;
    padding-right: 20px;
  }
  a.more-btn .b-text::after {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 736px) {
  a.more-btn .b-text {
    font-size: 14px;
    padding-right: 20px;
  }
  a.more-btn .b-text::after {
    width: 10px;
    height: 10px;
  }
}
/**YouTube埋め込みレスポンシブ**/
.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**放送後記プロフィール**/
.program-profile {
  text-align: center;
}

.program-profile img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 0 0 0;
  border: solid #efefef 1px;
}

/* アナリストプロフィール*/
.analyst-profile ul {
  list-style: none;
  padding-left: 0;
}

/*ウィジェット見出し*/
#main .widget .wrap-post-title,
.maintop-widget .wrap-post-title {
  border-left: 10px solid #067665;
}

/*スマホ時に1カラムにする*/
@media screen and (max-width: 599px) {
  #sidebar .sc_article.grid > a,
  .sc_article.grid > a {
    width: 100%;
    margin: 6px;
  }
}
/**kugiri**/
.kugiri {
  margin: 32px 0px;
  border-color: #ccc;
  border-top-width: 1px;
  border-top-style: solid;
}

.kugiri_widget {
  margin: 10px 0px;
  border-color: #dfdfdf;
  border-top-width: 1px;
  border-top-style: solid;
}

/*shareボタン非表示*/
.share,
.share-button.sns.small {
  display: none;
}

/*
 * Layout
 * -------------------------------------------------------------------
 */
/* ヘッダーロゴのサイズ */
#logo img, .logo img {
  width: 80%;
  height: auto;
}

.header-logo {
  padding: 15px 0;
}
@media screen and (max-width: 820px) {
  .header-logo {
    padding: 0;
  }
}

@media screen and (max-width: 820px) {
  #logo img, .logo img {
    margin: 1rem 0;
  }
}
/* ヘッダーメニュー */
.header-logo #nav .menu_desc, #onlynav .menu_desc, #nav_fixed #nav .menu_desc {
  font-size: 12px;
}

/* スマホスクロールメニュー */
#scrollnav ul li a {
  font-size: 0.8em;
}

/*ヘッダーロゴの右*/
/*snsアイコン2023.08.22追記*/
.pc-menu_sns ul {
  display: flex;
  justify-content: space-between;
  width: 200px;
  margin: 0 auto !important;
}

.pc-menu_sns ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none !important;
}

.pc-menu_sns ul li img {
  height: 38px;
}

.pc-menu_sns ul li .sns-img-x {
  padding: 3px;
}

.pc-menu_sns ul li .sns-img-ig {
  padding: 1px;
}

.hearder-widget {
  padding: 10px 0px;
}

/*===サーチメニュー内===*/
/*全体*/
#header_search.lity-hidden {
  padding: 0 5px;
}

.lity.lity-opened.lity-inline {
  background: rgba(1, 35, 50, 0.7);
}

.lity.lity-opened.lity-inline .lity-wrap .lity-container .lity-content::after {
  box-shadow: none;
}

/*見出し*/
#diver_widget_search-5 .searchbox_content_title, #custom_html-22 .searchbox_content_title {
  background-color: #fff;
  color: #012332;
  border-bottom: solid 1.5px #067665;
}

/*キーワード検索*/
#diver_widget_search-5 .search-widget {
  padding: 10px;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__input {
  border: none;
  color: #012332;
  background-color: #F7F4EF;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__select {
  border: none;
  background-color: #F7F4EF;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__select::before {
  border-top: 6px solid #889AA2;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__select select {
  color: #012332;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__select select option {
  color: #012332;
}

#diver_widget_search-5 .search-widget .search-widget__submit {
  background-color: #067665;
  border-radius: 20px;
  margin-top: 15px;
}

/*都道府県から検索*/
#sp-search .sp-prefectures {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 5px 0 5px;
}

#sp-search .sp-prefectures li {
  width: 50%;
  border: none;
}

#sp-search .sp-prefectures a {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 5px;
}

#sp-search .sp-prefectures img {
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  width: 100%;
}

/*===ページネーション===*/
.pagination span, .pagination a {
  border: solid 1.5px #1a569c;
}

.pagination .dots {
  border: none;
  color: #1a569c;
}

@media screen and (max-width: 768px) {
  .top-page .pagination {
    background: #fff;
    margin: 0;
    padding-bottom: 40px;
  }
}
/*ビッグフッター*/
@media screen and (max-width: 768px) {
  #bigfooter {
    padding: 0 10px;
  }
  #bigfooter .footer-logo1 {
    padding: 20px 0 10px 0;
    width: 40%;
    margin: 0 auto;
  }
  #bigfooter .footer-logo1 img {
    width: 100%;
    height: auto;
  }
  #bigfooter .sns-logo {
    margin: 0px auto;
    padding: 0px 0px;
    text-align: center;
  }
}
#bigfooter .footer_title {
  color: #1a569c;
  font-weight: 700;
  border-bottom: solid 2px #1a569c;
}

#bigfooter .bigfooter_colomn .widget > ul:first-of-type, .widget ul:first-child, .d_tab_tab > ul:first-of-type {
  margin: 0px;
}

#bigfooter .footer_link_menu li {
  border-bottom: 1px solid #f0f7ff;
}

/*#bigfooter .tagcloud a:hover {
background:#011d29;
}*/
/*ビッグフッターSNSアイコン*/
.sp-footer_sns {
  display: none;
}

.sp-footer_sns ul {
  display: flex;
  justify-content: space-between;
  width: 180px;
  margin: 0 auto !important;
}

.sp-footer_sns ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  border: none !important;
}
.sp-footer_sns ul li img {
  height: 38px;
}
.sp-footer_sns ul li .sns-img-x {
  padding: 3px;
}
.sp-footer_sns ul li .sns-img-ig {
  padding: 1px;
}

@media screen and (max-width: 768px) {
  .sp-footer_sns {
    display: block;
    padding: 30px 0 25px 0;
  }
}
/*フッター*/
@media screen and (max-width: 768px) {
  .footer_navi {
    display: none;
  }
}
/*サイドバーウィジェット---検索メニュー*/
/*検索ボタン*/
#diver_widget_search-3 .search-widget .search-widget__submit {
  background-color: #1a569c;
  border-radius: 20px;
  margin-top: 15px;
}

/*サイドバーウィジェット---スマホ時にバナー以外非表示*/
@media screen and (max-width: 768px) {
  #diver_widget_search-3 {
    display: none;
  }
  #block-30 {
    display: none;
  }
}
/*サイドバーウィジェット---スマホ時バナー*/
@media screen and (max-width: 768px) {
  #sidebar {
    padding: 10px;
  }
  #sidebar .sidebar_content {
    margin-bottom: -10px;
    padding: 0;
  }
  #sidebar .sidebar_content #block-31 img {
    width: 100%;
  }
  #sidebar .sidebar_content #block-4 .twitter-timeline {
    width: 100% !important;
  }
}
/*都道府県から探す サイドバーウィジェットの区切り*/
#sidebar .widget .side-prefectures li {
  border: none;
  margin-bottom: 8px;
}

#sidebar .widget .side-prefectures a {
  margin: 0;
  padding: 0;
}

#sidebar .widget .side-prefectures li:nth-child(odd) {
  margin-right: 10px;
}

#sidebar .widget .side-prefectures img {
  border: 1px solid #d2d2d2;
  border-radius: 8px;
}

.side-prefectures {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}

.side-prefectures li {
  text-decoration: none;
  transition: all 0.3s ease 0s;
  width: calc(50% - 5px);
}

.side-prefectures a {
  width: 100%;
  height: 100%;
}

.side-prefectures a:hover {
  opacity: 0.7;
}

.side-prefectures img {
  width: 100%;
  height: auto;
}

#block-31 p {
  margin: 0;
}

@media screen and (max-width: 959px) {
  #sidebar .widget .side-prefectures li {
    margin: 0 6px 6px 0;
  }
  #sidebar .widget .side-prefectures li:nth-child(3n) {
    margin-right: 0px;
  }
  #sidebar #block-31 {
    background-color: #f0f7ff;
    box-shadow: none;
  }
  #sidebar #block-31 .widgettitle {
    display: none;
  }
  #sidebar #block-4 {
    background-color: #f0f7ff;
    box-shadow: none;
  }
  .side-prefectures li {
    width: calc(33.333333% - 6.6666666667px);
  }
}
@media screen and (max-width: 480px) {
  #sidebar .widget .side-prefectures li {
    margin: 0 0 10px 0;
  }
  #sidebar .widget .side-prefectures li:nth-child(odd) {
    margin-right: 10px;
  }
  .side-prefectures li {
    width: calc(50% - 5px);
  }
}
/*サイドバージャンルから探す*/
/*サイドバーウィジェットの区切り*/
.side_purpose_search {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 10px;
  flex-wrap: wrap;
}
.side_purpose_search li {
  border: 1px solid #333 !important;
  margin: 0 10px 10px 0;
  border-radius: 8px;
  width: calc((100% - 20px) / 3);
}
.side_purpose_search li:nth-of-type(3n) {
  margin-right: 0;
}
.side_purpose_search a {
  padding: 0.25rem;
  text-align: center;
  display: block;
}
.side_purpose_search a:hover {
  opacity: 0.6;
}
.side_purpose_search img {
  max-width: 65px;
}
.side_purpose_search span {
  display: block;
  margin-top: 0.4em;
  font-size: 0.7em;
}

.side_ski_resort {
  margin: 0 !important;
}

.side_ski_resort li {
  margin-bottom: 0.8em;
  border-bottom: none;
}

/*サイドバーウィジェットズレ調整*/
.sidebar_content {
  margin-top: 13px;
}

@media screen and (max-width: 959px) {
  .sidebar_content {
    margin-top: 0;
  }
  .side-genre span {
    font-size: 1em;
  }
}
/*SNSボタン*/
.sns-btn a img:hover {
  opacity: 0.7;
}

/*もっと見る
#main .widget .widget_post_more {
    border-top: none;
}

#main .widget .widget_post_more a {
    margin: 20px;
    border: 1px solid #067665;
    border-radius: 10px;
    background: #fff;
    color: #067665;
    font-weight: bold;
}

#main .widget .widget_post_more a:hover {
    background-color: #edf5f4;
}*/
/*
 * Compornents
 * -------------------------------------------------------------------
 */
/*ページリンクボタン*/
.pagelink-wrap {
  text-align: center;
  margin: 26px 0 18px;
  padding: 0;
}

a.pagelink-btn {
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 16px;
  border: solid #025c4e 2px;
  background: #067665;
  text-decoration: none;
  transition: 0.3s;
}

a.pagelink-btn .b-text {
  display: block;
  flex-grow: 1;
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-right: 15px;
  font-size: 16px;
}

a.pagelink-btn:hover {
  background-color: #078674;
}

@media (max-width: 1200px) {
  a.pagelink-btn .b-text {
    font-size: 18px;
  }
}
@media (max-width: 736px) {
  a.pagelink-btn .b-text {
    font-size: 16px;
  }
}
/*関連リンク（外部リンク）ボタン
___________________*/
.relation-wrap {
  margin: 20px 0 0;
  padding: 0;
}

a.relation-btn {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border: 1px solid #59beee;
  background-color: #59beee;
  text-decoration: none;
  transition: 0.3s;
}

a.relation-btn:hover {
  background-color: #86d0f1;
}

a.relation-btn .b-text {
  display: block;
  flex-grow: 1;
  color: #fff;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-right: 15px;
  font-size: 16px;
}

a.relation-btn .b-text:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  transition: 0.3s;
}

@media (max-width: 1200px) {
  a.relation-btn .b-text {
    font-size: 18px;
    padding-right: 20px;
  }
  a.relation-btn .b-text:after {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 736px) {
  a.relation-btn .b-text {
    font-size: 14px;
    padding-right: 20px;
  }
  a.relation-btn .b-text:after {
    width: 10px;
    height: 10px;
  }
}
/*===ハンバーガーメニュー内===*/
/*全体*/
.drawer-overlay.active {
  background: rgba(51, 51, 51, 0.7);
}

.drawer-nav .widget {
  padding: 10px 20px;
}

/*ロゴ*/
.sp-menu_logo {
  padding-top: 20px;
}

.sp-menu_logo img {
  width: 50%;
  margin: 0 25%;
}

/*メニュー項目*/
#nav_menu-5 .drawer_content_title {
  background: none;
  border-bottom: solid 2px #1a569c;
  font-weight: 700;
  color: #1a569c;
}
#nav_menu-5 li {
  border-bottom: solid 1.5px #f0f7ff;
}

/*snsアイコン*/
.sp-menu_sns ul {
  display: flex;
  justify-content: space-between;
  width: 180px;
  margin: 0 auto !important;
}

.sp-menu_sns ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none !important;
}

.sp-menu_sns ul li img {
  height: 38px;
}

.sp-menu_sns ul li .sns-img-x {
  padding: 3px;
}

.sp-menu_sns ul li .sns-img-ig {
  padding: 1px;
}

/*レスポンシブ調整*/
@media screen and (max-width: 959px) {
  #header .header-logo .drawer-nav-btn-wrap {
    display: block !important;
  }
  #header .header-logo .drawer-nav-btn-wrap .drawer-nav-btn {
    display: block !important;
  }
  #header .header-logo .header_search {
    display: block !important;
  }
}
/*===サーチメニュー内===*/
/*全体*/
#header_search.lity-hidden {
  padding: 0 5px;
}

.lity.lity-opened.lity-inline {
  background: rgba(51, 51, 51, 0.7);
}

.lity.lity-opened.lity-inline .lity-wrap .lity-container .lity-content::after {
  box-shadow: none;
}

/*見出し*/
#diver_widget_search-5 .searchbox_content_title,
#block-40 .searchbox_content_title {
  background-color: #fff;
  color: #333333;
  border-bottom: solid 1.5px #1a569c;
}

/*キーワード検索*/
#diver_widget_search-5 .search-widget {
  padding: 10px;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__input {
  border: none;
  background-color: #f0f7ff;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__select {
  border: none;
  background-color: #f0f7ff;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__select::before {
  border-top: 6px solid #666666;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__select select {
  color: #333333;
}

#diver_widget_search-5 .search-widget .search-widget__col .search-widget__select select option {
  color: #333333;
}

#diver_widget_search-5 .search-widget .search-widget__submit {
  background-color: #1a569c;
  border-radius: 20px;
  margin-top: 15px;
}

/*都道府県から検索*/
#sp-search .sp-prefectures {
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px 0 5px;
}

#sp-search .sp-prefectures li {
  width: 50%;
  border: none;
}

#sp-search .sp-prefectures a {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 5px;
  display: block;
}

#sp-search .sp-prefectures img {
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  width: 100%;
}

/*使用目次*/
/* 親階層・子階層ともリストマーカーにnoneを指定 */
#ez-toc-container.counter-decimal ul.ez-toc-list li a::before, .ez-toc-widget-container.counter-decimal ul.ez-toc-list li a::before {
  content: none;
}

#ez-toc-container {
  margin: 30px 0 0;
  padding: 1em 2em 1em 2em;
  border: none;
  font-size: 90%;
}

#ez-toc-container ul li {
  line-height: 1.5;
  margin-bottom: 0.6em;
}

#ez-toc-container li {
  padding: 6px 0;
  border-bottom: solid 1px #cccccc;
  margin: 0;
}

#ez-toc-container a {
  color: #000;
}

.ez-toc-title, .ez-toc-title-toggle {
  vertical-align: top;
  padding: 0.5em 0px 2em;
}

.ez-toc-title::before {
  font-family: "Font Awesome 6 Free";
  content: "\f15c";
  font-size: 15px;
  font-weight: 400;
  margin-right: 4px;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * Page
 * -------------------------------------------------------------------
 */
/*---------------------------------

フォームCSS

---------------------------------*/
/**フォーム基本**/
.formGroup {
  margin-top: 40px;
}

.form-input-area:not(:first-child) {
    margin-top: 3em;
}

.form-heading-title {
    margin-bottom: 0.5em;
    font-weight: 700;
    font-size: 18px;
}

.form-gridtype {
    display: flex;
    justify-content: flex-start;
    gap: 1em;
}

.form-grid-column {
    width: 100%;
    gap: 1em;
}

.form-required {
    display:inline-block;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4rem;
    padding:0 5px 0 4px;
    margin-left: 5px;
    color: #ea0000;
    border-color: #ea0000;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
}

.form-item-title {
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}

.form-item-content {
  font-size: 16px;
  margin-bottom: 5px;
  margin-left: 0.5em;
}

.wpcf7-submit {
  text-align: center;
}

.form-solid{
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border:solid 1px #ccc;
	padding:1pc 20px 6px;
	margin:30px 0
}

/* Zipaddr-JP のメッセージ削除 */
#autozip{
	display: none!important;
}

@media screen and (max-width: 640px) {
  .form-gridtype {
    justify-content: stretch;
  }
  .form-heading-title {
    font-size: 16px;
  }
  .form-item-title {
    font-size: 14px;
  }
}
/**入力**/
input[type=text], input[type=tel], input[type=email], .wpcf7 input[type=date], select, textarea {
	width:100%;
    height: 50px;
    font-size: 16px;
}

textarea {
  height: 100px;
  font-family: "Arial";
}

.wpcf7 input[type=date], select {
    width: 100%;
    max-width: 386px;
}
@media screen and (max-width:959px){
    .wpcf7 input[type=date], select {
        max-width: 100%;
    }
}

/** textarea placeholder調整 **/
textarea::-webkit-input-placeholder {
  color: #ccc;
  font-family: "Arial";
}

textarea:-moz-placeholder {
  color: #ccc;
  font-family: "Arial";
}

textarea::-moz-placeholder {
  color: #ccc;
  font-family: "Arial";
}

textarea:-ms-input-placeholder {
  color: #ccc;
  font-family: "Arial";
}

.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: 0;
}

.wpcf7 input[type=email], .wpcf7 input[type=text], .wpcf7 input[type=tel], .wpcf7 input[type=date], .wpcf7 textarea, .wpcf7 select {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    font-size: 1pc;
    padding: 0.5em;
    border-radius: 0;
}

.wpcf7 input[type=email]:focus, .wpcf7 input[type=tel]:focus, .wpcf7 input[type=date]:focus, .wpcf7 input[type=text]:focus, .wpcf7 textarea:focus {
    border: 1px solid #ea5504;
}

.wpcf7-list-item{
    margin:0;
}

.wpcf7-list-item-label {
    font-weight: 400;
}


/**ボタン色**/
.wpcf7-form-control.wpcf7-submit{
	background-color:#1A569c;
	color:#fff;
}

/**エラー処理**/
.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

/**応募完了ページ**/
.form-finish-txtArea {
  margin: 20px 0 40px 0;
}

/**景品リスト**/
select.select-prize {
  width: 85%;
}

@media screen and (max-width: 640px) {
  select.select-prize {
    width: 100%;
  }
}
/*応募リンクボタン*/
.formlink-wrap {
  text-align: center;
  margin: 26px 0 18px;
  padding: 0;
}

a.formlink-btn {
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 16px;
  border: solid #960000 2px;
  background: #d33a41;
  text-decoration: none;
  transition: 0.3s;
}

a.formlink-btn:hover {
  opacity: 0.7;
}

a.formlink-btn .b-text {
  display: block;
  flex-grow: 1;
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-right: 15px;
  font-size: 16px;
}

a.formlink-btn:hover {
  opacity: 0.7;
}

@media (max-width: 1200px) {
  a.formlink-btn .b-text {
    font-size: 18px;
  }
}
@media (max-width: 736px) {
  a.formlink-btn .b-text {
    font-size: 16px;
  }
}
/**プレゼント名様**/
.present-people {
  margin-top: -24px;
  margin-bottom: 12px;
}

.present-people .num {
  color: #fff;
  padding: 4px 14px;
  border-radius: 10px;
  background: #ff6633;
}

/*
 * グランプリモーダル
 * -------------------------------------------------------------------
 */
/* 簡易リセットCSS */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* パーソナリティ紹介 */
.personality-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.personality-content .content {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 5em;
}
.personality-content .content img {
  width: 100%;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 2px 3px 7px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.personality-content .content img.winner {
  border: 2px solid #c2ad1c;
}
.personality-content .content img:hover {
  opacity: 0.8;
}
.personality-content .content table {
  width: 100%;
  padding: 10%;
  text-align: center;
  font-size: 14px;
}
.personality-content .content table tr th {
  border: solid 2px #fff;
  background-color: #f0f0f0;
}
.personality-content .content table tr td {
  border: solid 2px #fff;
  background-color: #f7f7f7;
}
.personality-content .content table tr td a {
  color: #0168b3;
}
.personality-content .content p {
  font-size: 14px;
  margin-bottom: 0;
}
.personality-content .content p span {
  font-size: 1.1em;
  background: linear-gradient(transparent 75%, #bfebff 25%);
}
.personality-content .content .winner-badge {
  position: relative;
}
.personality-content .content .winner-badge::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 13%;
  right: 5%;
  background: url("https://nack5.biz/wp-content/uploads/badge.png") no-repeat center/contain;
  width: 30px;
  height: 40.35px;
}

/* .personality-content .content .winner span {
  position: relative;
  text-align: left;
  font-weight: normal;
}
.personality-content .content .winner span::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 5%;
  right: 5%;
  background: url("https://nack5.biz/wp-content/uploads/badge.png")
    no-repeat center / contain;
  width: 40px;
  height: 53.8px;
} */
@media (min-width: 768px) {
  .personality-content .content:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .personality-content .content {
    width: 100%;
    margin-right: 0;
  }
  .personality-content .content .text-center {
    padding: 1em 0px 2em !important;
  }
  .personality-content .content .js-open-modal {
    width: 60%;
    margin: 0 auto;
  }
  .personality-content .content .winner {
    text-align: center;
  }
}
/* モーダル */
.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  background-color: rgba(120, 123, 131, 0.8);
  padding: 20px 0;
  overflow-y: auto;
  max-height: 100%;
}

@media (max-width: 767px) {
  .modal {
    align-items: flex-start;
  }
}
/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal .modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Swiperの矢印部分 */
/* @media (max-width: 768px) {
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    display: none;
  }
} */
/* モーダルのコンテンツ */
.modal .modal__content {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 100%;
  top: 0;
  background: none;
  padding: 0 20px;
}
.modal .modal__close-btn {
  position: absolute;
  top: 0;
  right: 10px;
  width: 50px;
  height: 50px;
  color: #fff;
  background: #1a569c;
  padding: 0;
  border: none;
  z-index: 10;
  cursor: pointer;
}
.modal .swiper-slide {
  padding-right: 60px;
  height: 100vh;
  overflow: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.modal .swiper-slide::-webkit-scrollbar {
  /*Google Chrome、Safariへの対応*/
  display: none;
}
.modal .swiper-slide .swiper-slide-bg {
  background: #fff;
  padding: 20px;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile {
  align-items: center;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-img img {
  border-radius: 1rem;
  box-shadow: 2px 3px 7px 0 rgba(0, 0, 0, 0.1);
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text .winner-text {
  display: inline-block;
  position: relative;
  padding-left: 30px;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text table {
  margin-top: 20px;
  font-size: 16px;
  border: none;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text table tbody {
  vertical-align: top;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text table tbody th {
  padding: 10px 0;
  border: none;
  font-weight: 400;
  width: 60px;
  text-align: left;
  padding: 10px;
  background-color: #fff;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text table tbody td {
  padding: 10px;
  border: none;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text table tbody td span {
  font-weight: normal;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text table tbody td .time {
  font-size: 14px;
  display: block;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text table tbody td .radio-name a {
  color: #000;
  text-decoration: underline;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text table tbody td .radio-name a:hover {
  opacity: 0.8;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-text::after {
  position: absolute;
  content: "";
  display: block;
  background: url("https://nack5.biz/wp-content/uploads/badge.png") no-repeat center/contain;
  width: 25px;
  height: 40px;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-comment {
  padding-top: 50px;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-comment div {
  margin-bottom: 5%;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-comment div p {
  font-weight: 700;
  color: #1a569c;
  margin: 0;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-comment .ikigomi-text {
  background-color: #f0f7ff;
  border-radius: 10px;
  padding: 2rem 1rem;
  margin-bottom: 5%;
}
.modal .swiper-slide .swiper-slide-bg .swiper-content-comment .ikigomi-text .text-center {
  font-weight: 700;
  color: #1a569c;
  margin: 0;
  padding: 0 !important;
}
.modal .swiper-button-next,
.modal .swiper-button-prev {
  position: absolute;
  background: #f0f7ff !important;
  height: 20% !important;
  width: 50px !important;
  padding: 40px 5px !important;
  border-radius: 6px;
  right: 10px !important;
  left: auto !important;
}
.modal .swiper-button-next::after,
.modal .swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: bold;
  color: #1a569c;
}
.modal .swiper-button-prev {
  top: 12% !important;
}
.modal .swiper-button-next {
  top: 36% !important;
}

@media (min-width: 768px) {
  .modal .d-flex {
    display: flex;
    flex-wrap: wrap;
  }
  .modal .swiper-content-profile figure {
    width: 40%;
  }
  .modal .swiper-content-text {
    width: 60%;
    padding-left: 20px;
  }
  .modal .swiper-content-comment div {
    margin-bottom: 3%;
  }
}
@media (max-width: 767px) {
  .modal .modal__close-btn {
    position: fixed;
    top: 20px;
  }
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    position: fixed !important;
    height: 24% !important;
  }
  .modal .swiper-button-prev {
    top: 17% !important;
  }
  .modal .swiper-button-next {
    top: 44% !important;
  }
  .modal .swiper-slide {
    padding-right: 50px;
  }
  .modal .swiper-slide .swiper-slide-bg .swiper-content-comment {
    padding-top: 0;
  }
  .modal .swiper-slide .swiper-slide-bg .swiper-content-profile .swiper-content-img {
    width: 60%;
    margin: 0 auto;
  }
}
/* テキストセンター */
.text-center {
  text-align: center;
}

/*結果発表*/
.results .bg-red {
  color: #fff;
  background: #d3584f;
  text-align: center;
  font-size: 1.1rem;
  padding: 0.4rem 0;
  border-radius: 6px;
  margin-bottom: 16px;
}
.results .bg-Lblue {
  color: #fff;
  background: #3d89c5;
  text-align: center;
  font-size: 1.1rem;
  padding: 0.4rem 0;
  border-radius: 6px;
  margin-bottom: 16px;
}
.results .winner-img {
  padding: 10px;
}
.results .winner-img img {
  margin: 0;
  box-shadow: 2px 3px 7px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
}
.results .winner-detail {
  width: 100%;
}
.results .winner-detail p {
  font-size: 1.4rem;
  padding: 0 0 0.5rem !important;
}
.results .winner-detail .record-box {
  position: relative;
  margin: 2em 0 0;
  padding: 0.5em 1em;
  border: solid 3px #95ccff;
  border-radius: 8px;
}
.results .winner-detail .record-box .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #95ccff;
  font-weight: bold;
}
.results .winner-detail .record-box p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4em;
  color: #333333;
  text-align: center;
  padding: 0.5rem 0 1rem !important;
}
.results .winner-detail .record-box ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
.results .row.sp .sc_col2.sp {
  padding: 10px;
}
.results .row.sp .sc_col2.sp p {
  text-align: center;
  margin: 0;
}
.results .row.sp .sc_col2.sp .txt-blue {
  color: #0168b3;
  padding: 0.4rem 0 0 0;
}
.results .row.sp .sc_col2.sp .txt-blue span {
  font-weight: 700;
  font-size: 1.2rem;
}
.results .row.sp .sc_col2.sp table {
  border: none;
}
.results .row.sp .sc_col2.sp table th {
  font-weight: 400;
  vertical-align: top;
  background-color: #fff;
  border: none !important;
}
.results .row.sp .sc_col2.sp table td {
  background-color: #fff;
  border: none !important;
}
.results .results-all .bg-red,
.results .results-all .bg-Lblue {
  font-size: 1.2rem;
  padding: 0.4rem 0;
}
.results .results-all .win-txt {
  text-align: center;
  color: red;
  font-size: 1.2rem;
  font-weight: 700;
}
.results .results-all .row.sp {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
}
.results .results-all .row.sp .winner-detail {
  width: 50%;
}
.results .results-all .movie {
  padding: 10px;
  margin-top: 2rem;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .results .results-all .row.sp {
    display: block;
  }
  .results .results-all .row.sp .sc_col2.sp {
    padding: 10px;
  }
  .results .results-all .row.sp .sc_col2.sp p {
    padding: 1rem 0 2.6rem 0;
  }
  .results .results-all .row.sp .winner-detail {
    width: 100%;
  }
  .results .results-all .movie {
    margin-top: 0;
  }
  .results .winner-detail .record-box {
    margin: 2rem 0 2rem;
  }
  .results .winner-img {
    width: 80%;
    margin: 0 auto;
  }
}

/* 基本情報 施設 */
.facility ul {
  margin-bottom: 0em !important;
  padding-left: 0em;
  line-height: 0em;
}

.facility li {
  list-style: none;
  display: inline-block;
  font-size: 88%;
  color: #fff;
  background: #afafaf;
  padding: 2px 10px;
  margin: 0 0.4em 0.6em 0;
}

.facility .yes {
  background: #59beee;
}

/*（旧デザイン用）.skiSpecial
_____________________________________**/
.skiSpecial {
  margin: 28px 0px 10px;
  color: #6F6F6F;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 0px;
}

.skiSpecial img {
  width: 50px;
}

.skiSpecial p {
  color: #2A2A2A;
  font-family: Georgia, "Times New Roman", Times, "serif";
  font-style: italic;
  font-size: 32px;
  margin: 0px !important;
  padding: 0px !important;
  line-height: 100%;
  letter-spacing: 4px;
}

/*（旧デザイン用）.skiSnowboard
_____________________________________**/
.skiSnowboard {
  color: #3c3c3c;
  border: dotted thin #3c3c3c;
  padding: 10px;
  text-align: center;
  font-weight: 400;
}

.side-mark {
  border-top: dotted 1px #999999;
  border-bottom: dotted 1px #999999;
  padding: 4px 8px !important;
  margin: 16px 0px 10px !important;
  font-size: 16px;
  font-weight: 400;
}

.kugiri-bottom {
  padding-bottom: 0 !important;
}

/*---------------------------------

クイズアンケート

---------------------------------*/
.QArea {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 4px solid #e73f90;
  border-radius: 10px;
}

.QArea-img {
  width: 20%;
}

.QArea-txt {
  padding: 20px;
  margin-left: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
}

.Quiz {
  font-size: 20px;
  font-weight: 900;
  color: #e73f90;
}

.section ul ul {
  margin: 1em 0 0 0;
  list-style-type: circle;
}

/*賞品エリア*/
.prizeListArea ul {
  list-style-type: none;
  padding: 0;
  background-color: #ffe2ae;
  padding: 20px;
  text-align: left;
  margin: 0 auto;
}

.prizeListArea li {
  list-style-type: none;
  display: inline-block;
  vertical-align: top;
  width: 45%;
  margin: 0;
}

.prizeListArea li:nth-child(2n+1) {
  margin-right: 8%;
}

.prizeListLi span {
  font-size: 18px;
}

.prizeListLi p {
  font-size: 14px !important;
  text-align: center;
}

.mainprizeImgArea {
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaignDetailArea ul {
  padding: 20px;
}

/*プレゼントクイズ応募フォーム*/
.QuizExp {
  border: solid 10px #dbdbdb;
  padding: 24px;
  margin: 56px 0px 16px;
}

.QuizExpTitle {
  font-weight: 600;
  text-align: center;
  font-size: 24px;
  padding: 10px 0px;
  margin: 0px 0px 24px;
  border-bottom: 1px solid #4c4c4c;
}

@media screen and (max-width: 768px) {
  .QArea-img {
    width: 50%;
  }
  .QArea-txt {
    margin-left: 20px;
  }
  .Quiz {
    font-size: 16px;
  }
  .prizeListArea ul {
    padding: 10px;
  }
  .prizeListArea li {
    width: 46%;
  }
  .prizeListLi span {
    font-size: 14px;
  }
  .prizeListLi p {
    font-size: 11px !important;
    text-align: center;
  }
  .prizeListArea li:nth-child(2n+1) {
    margin-right: 5%;
  }
}
/*---------------------------------
賞品一覧
---------------------------------*/
.present-people {
  padding: 0 0 8px 0;
}

.present-people .num {
  color: #fff;
  padding: 4px 14px;
  border-radius: 10px;
  background: #ff6633;
}

.present-explain {
  padding: 0 0 8px 0;
  font-size: 12px;
}

.content ul {
  line-height: 0;
}

@media screen and (min-width: 769px) {
  .present-item {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .present-item .sc_col2 {
    width: 48%;
  }
  .present-item .sc_col2:first-child {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .present-item {
    padding: 0 10px;
  }
}
.present-item .sc_col2 {
  box-shadow: 1px 1px 10px -7px #191919;
  border-radius: 10px;
  margin-bottom: 22px;
}

/**レポータープロフィール（2023～）**/
.reporter-img {
  text-align: center;
}

.reporter-img img {
  margin: 0 0 0 0;
}

.reporter-name {
  font-size: 1.1em;
  background: linear-gradient(transparent 75%, #bfebff 25%);
}

@media screen and (max-width: 768px) {
  .reporter-img img {
    width: 180px;
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .reporter-img img {
    width: 100%;
    height: auto;
  }
  .reporter-img.reporter-square img {
    width: 70%;
    height: auto;
  }
}
/*---------------------------------

スキー場 基本データ.skiData

---------------------------------*/
@media screen and (max-width: 736px) {
  .sc_col3 {
    padding: 10px 4px;
  }
}
.skiData p {
  background: #888888;
  color: #fff;
  padding: 4px !important;
  text-align: center;
  font-size: 12px;
  margin: 0px 0px 4px;
  border-radius: 8px;
  font-weight: 400;
}

.skiData {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
}

/*---------------------------------

スキー場 難易度.skiLevel

---------------------------------*/
.skiLevel {
  width: 100%;
}

.skiLevel-1 {
  color: #fff;
  text-align: center;
  background: #e5789a;
  border: 1px solid #fff !important;
}

.skiLevel-2 {
  color: #fff;
  text-align: center;
  background: #4573bb;
  border: 1px solid #fff !important;
}

.skiLevel-3 {
  color: #fff;
  text-align: center;
  background: #794e9f;
  border: 1px solid #fff !important;
}

.kugiri-bottom {
  padding-bottom: 0 !important;
}

/*---------------------------------

スキー場 情報

---------------------------------*/
.ski-onsen-recommendation img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 0 0.3em 0;
}

.ski-onsen-caption {
  text-align: center;
}

.ev-kugiri {
  margin: 10px 0px;
  border-color: #ccc;
  border-top-width: 1px;
  border-top-style: solid;
}

.evmap {
  margin-top: 1em;
}

a.gmap-btn {
  color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 16px;
  border: solid 1.5px #ea7e78;
  background: #ea7e78;
  text-decoration: none;
  transition: 0.3s;
}
a.gmap-btn:hover {
  background-color: #ffd4d2;
}

/*===メインスライダー===*/
.firstview_custom.clearfix {
  position: relative;
}
.firstview_custom.clearfix .main-slider {
  max-width: 1200px;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
}
.firstview_custom.clearfix .main-slider .slider1 {
  width: 100%;
  height: 100%;
}
.firstview_custom.clearfix .main-slider .slider1 .swiper-slide-active img,
.firstview_custom.clearfix .main-slider .slider1 .swiper-slide-duplicate-active img,
.firstview_custom.clearfix .main-slider .slider1 .swiper-slide-prev img {
  animation: zoomUp 10s linear 0s 1 normal both;
}
.firstview_custom.clearfix .main-slider .slider1 .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  /* IE: not support */
  width: 100%;
  height: 100%;
}
.firstview_custom.clearfix .slider-logo {
  position: absolute;
  max-width: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .firstview_custom.clearfix .main-slider {
    height: 420px;
  }
  .firstview_custom.clearfix .slider-logo {
    width: 42%;
  }
}
@media screen and (max-width: 599px) {
  .firstview_custom.clearfix {
    /*.mvimg-1 img {
      -o-object-position: top 0 left 5%;
      object-position: top 0 left 5%;
    }*/
  }
  .firstview_custom.clearfix .mvimg-2 img {
    -o-object-position: top 0 left 15%;
    object-position: top 0 left 15%;
  }
  .firstview_custom.clearfix .mvimg-3 img {
    -o-object-position: top 0 left 30%;
    object-position: top 0 left 30%;
  }
  .firstview_custom.clearfix .mvimg-4 img {
    -o-object-position: top 0 left 25%;
    object-position: top 0 left 25%;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/*===ピックアップスライダー===*/
#block-32 {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0 0 30px !important;
}

#block-32 #title_pickup {
  background: none;
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  #block-32 #title_pickup {
    padding-top: 25px;
  }
}
#block-32 .slider2 {
  padding-top: 28px;
}

#block-32 .slider2 .swiper-wrapper {
  margin-bottom: 40px;
}

#block-32 .slider2 .swiper-wrapper .swiper-slide {
  background-color: #f0f7ff;
}

@media screen and (max-width: 768px) {
  #block-3 .slider2 .swiper-wrapper h2 {
    margin-top: 0.4em;
  }
}
#block-32 .slider2 .swiper-button-prev,
#block-32 .slider2 .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.7);
}

#block-32 .slider2 .swiper-button-prev::after,
#block-32 .slider2 .swiper-button-next::after {
  content: "";
  left: 20px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

#block-32 .slider2 .swiper-button-prev {
  padding-left: 4px;
}

#block-32 .slider2 .swiper-button-prev::after {
  transform: rotate(-135deg);
}

#block-32 .slider2 .swiper-button-next {
  padding-right: 4px;
}

#block-32 .slider2 .swiper-button-next::after {
  transform: rotate(45deg);
}

#block-32 .slider2 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 7px;
  background-color: #f0f7ff;
  border: solid 2px #666666;
}

#block-32 .slider2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #666666;
}

/*カテゴリータグ（スライダー）*/
#block-32 .swiper-category-name {
  font-size: 1em !important;
  font-weight: normal !important;
  padding: 2px 8px !important;
}

@media screen and (max-width: 599px) {
  #block-32 .swiper-category-name {
    font-size: 0.8em !important;
  }
}
/* 全体のスタイル */
#block-32 .swiper-container {
  width: 100%;
  overflow: hidden;
}

/* 全スライド共通スタイル */
#block-32 .swiper-slide {
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  /*line-height: 250px;*/
}

/* 4の倍数＋1枚目のスライドのスタイル（1枚目、5枚目…） */
#block-32 .swiper-slide:nth-child(4n+1) {
  background-color: #EECB27;
}

/* 4の倍数＋2枚目のスライドのスタイル（2枚目、6枚目…） */
#block-32 .swiper-slide:nth-child(4n+2) {
  background-color: #E13239;
}

/* 4の倍数＋3枚目のスライドのスタイル（3枚目、7枚目…） */
#block-32 .swiper-slide:nth-child(4n+3) {
  background-color: #1F1762;
}

/* 4の倍数＋4枚目のスライドのスタイル（4枚目、8枚目…） */
#block-32 .swiper-slide:nth-child(4n+4) {
  background-color: #BEDAE5;
}

#block-32 .swiper-thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

#block-32 .swiper-thumbnail img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

#block-32 .swiper-category-name {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3px 8px;
  background: #333;
  color: #fff;
  font-size: 0.6em;
  border-radius: 0 0 0 2px;
  margin: 0;
  font-weight: bold;
}

/*===トップページのみに追加===*/
#main-wrap.top-page .wrap-post-title {
  text-align: center;
  border: none;
  background: none;
  box-shadow: none;
  font-size: 10px;
  padding: 40px 20px 0 20px;
  width: 100%;
  margin: 0;
}
#main-wrap.top-page .wrap-post-title::before, #main-wrap.top-page .wrap-post-title::after {
  display: none;
}
#main-wrap.top-page .wrap-post-title span {
  font-size: 26px;
  font-family: "ice-cream-slant", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#main-wrap.top-page .wrap-grid-post-box {
  margin-top: 28px;
}

@media screen and (max-width: 768px) {
  #main-wrap.top-page {
    margin: 0;
  }
  #main-wrap.top-page #main {
    padding: 0 !important;
  }
  #main-wrap.top-page #main #block-32 .wrap-post-title {
    background-color: #f0f7ff;
  }
  #main-wrap.top-page #main .wrap-post-title {
    background-color: #fff;
  }
  #main-wrap.top-page #main .wrap-grid-post-box {
    background: #fff;
    margin: 0;
    padding: 28px 20px 10px;
  }
  #main-wrap.top-page #main .wrap-grid-post-box .grid_post-box {
    width: 100% !important;
    padding: 0 0 50px 0;
  }
  #main-wrap.top-page #main .wrap-grid-post-box .grid_post-box .post-box-contents {
    border: none;
    margin: 0;
    padding: 0 0 5px 0;
  }
}
/*===カテゴリータグ（全体）===*/
.grid_post_thumbnail .post-cat {
  top: 0;
  bottom: auto;
}

@media screen and (max-width: 599px) {
  .top-page .post-cat {
    font-size: 14px;
    padding: 2px 8px;
  }
}
/*===サムネイルサイズ調整===*/
.post_thumbnail_wrap.post-box-thumbnail__wrap {
  aspect-ratio: 3/2;
}

/*=== 404 ===*/
/* 検索フォーム調整 */
.searchform{
	margin: 20px 20px 50px;
}

/* 2026ボタンデザイン追加 */
.btn-coral{
    text-align: center;
    margin-bottom: 2rem;
}
.btn-coral a{
    width: auto;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #ea7e78;
    padding: 0.75rem 3rem;
    border: none;
    border-radius: 2rem;
    margin: 0 auto;
}
.btn-coral a:hover{
    color: #fff;
}

/*飾りなし リスト形式*/
.list-plain{
    padding-left: 0em;
	margin-bottom: 0;
}
.list-plain li{
    list-style: none;
    text-indent: -1em;
    padding-left: 1rem;
}