@charset "UTF-8";

/*------ hellogolf 共通CSS ------*/
:root {
  --green: #00822D;
}
/* リセットCSS */
/* すべての要素のマージンとパディングをリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* ボックスモデルを border-box に設定 */
}
/* インラインリストのスタイルをリセット */
ul, ol {
  list-style: none;
}
/* リンクのデフォルトスタイルをリセット */
a {
  text-decoration: none;
  color: inherit;
}
/* 速報・トップへ戻るボタン非表示*/
.live_link_area {
  display: none!important;
}
#to_top {
  display: none;
}
/*------ hide-pc & hide-sp ------*/
@media (min-width: 768px) {
  .hide-pc {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-sp {
    display: none !important;
  }
}

/*------ hellogolf top ------*/
.page-hellogolf {
  background: #fff;
  line-break: strict;
  word-break: normal !important;
  word-wrap: break-word;
  padding: 0;
}
.page-hellogolf *,
.page-hellogolf::before,
.page-hellogolf::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.page-hellogolf .sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1224px) {
  .page-hellogolf .sec-inner {
    margin: 0 12px;
  }
}
.page-hellogolf p {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.64px;
  margin: 0 0 10px;
}
@media (max-width: 767px) {
  .page-hellogolf p {
    font-size: 14px;
    letter-spacing: 0.56px;
    margin: 0 0 20px;
  }
}
.page-hellogolf p:last-child {
  margin: 0;
}
.page-hellogolf a:hover {
  opacity: 0.8;
  text-decoration: initial;
}
.page-hellogolf .sec-title {
  color: #00822d;
  font-size: 40px;
  font-weight: 700;
  margin: -8px 0 46px;
  text-align: center;
  line-height: normal;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .page-hellogolf .sec-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.12px;
    margin: 0px 0 21px;
  }
}
.page-hellogolf .section {
  position: relative;
}
.page-hellogolf .btn-more {
  text-align: center;
}
.page-hellogolf .btn-more > a {
  width: 100%;
  max-width: 385px;
  padding: 7px 10px 8px;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.56px;
  border-radius: 4px;
  background: #00783d;
  display: block;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .page-hellogolf .btn-more > a {
    max-width: 320px;
  }
}
.page-hellogolf .btn-more > a::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url("../images/csr/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.page-hellogolf .main-visual > img {
  width: 100%;
}

/* カテゴリータブCSS 20240815 */
/* エリア復活の場合、コメントアウト外す */

/*.page-hellogolf .content-tab .tab-btns {*/
/*  display: flex;*/
/*  margin: 0 0 50px;*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-hellogolf .content-tab .tab-btns {*/
/*    margin: 0 0 45px;*/
/*  }*/
/*}*/
/*.page-hellogolf .content-tab .tab-btns > button {*/
/*  background: #fff;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  width: calc((100% - 72px) / 4);*/
/*  margin: 0 24px 0 0;*/
/*  transition: none;*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-hellogolf .content-tab .tab-btns > button {*/
/*    width: calc((100% - 30px) / 4);*/
/*    margin: 0 10px 0 0;*/
/*  }*/
/*}*/
/*.page-hellogolf .content-tab .tab-btns > button:nth-child(4n) {*/
/*  margin-right: 0;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btns > button::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 50%;*/
/*  top: calc(100% - 35px);*/
/*  transform: translateX(-50%);*/
/*  width: 49px;*/
/*  height: 49px;*/
/*  --svg: url('data:image/svg+xml,                    <svg xmlns="http://www.w3.org/2000/svg" width="38" height="34" viewBox="0 0 38 34" fill="none">                    <path d="M22.4641 32C20.9245 34.6667 17.0755 34.6667 15.5359 32L0.813469 6.5C-0.726131 3.83334 1.19837 0.5 4.27757 0.5L33.7224 0.5C36.8016 0.5 38.7261 3.83333 37.1865 6.5L22.4641 32Z" fill="%2300822D"/>                    </svg>');*/
/*  background-image: var(--svg);*/
/*  background-repeat: no-repeat;*/
/*  background-position: bottom center;*/
/*  background-size: contain;*/
/*  color: #00822d;*/
/*  opacity: 0;*/
/*  z-index: -1;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btns > button:nth-child(2)::after {*/
/*  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2238%22%20height%3D%2234%22%20viewBox%3D%220%200%2038%2034%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M22.4641%2032C20.9245%2034.6667%2017.0755%2034.6667%2015.5359%2032L0.813467%206.5C-0.726133%203.83333%201.19837%200.5%204.27757%200.5L33.7224%200.5C36.8016%200.5%2038.7261%203.83333%2037.1865%206.5L22.4641%2032Z%22%20fill%3D%22%23CCB58A%22%2F%3E%3C%2Fsvg%3E");*/
/*}*/
/*.page-hellogolf .content-tab .tab-btns > button:nth-child(3)::after {*/
/*  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2238%22%20height%3D%2234%22%20viewBox%3D%220%200%2038%2034%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M22.4641%2032C20.9245%2034.6667%2017.0755%2034.6667%2015.5359%2032L0.813467%206.5C-0.726133%203.83333%201.19837%200.5%204.27757%200.5L33.7224%200.5C36.8016%200.5%2038.7261%203.83333%2037.1865%206.5L22.4641%2032Z%22%20fill%3D%22%2372AF43%22%2F%3E%3C%2Fsvg%3E");*/
/*}*/
/*.page-hellogolf .content-tab .tab-btns > button:nth-child(4)::after {*/
/*  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2238%22%20height%3D%2234%22%20viewBox%3D%220%200%2038%2034%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M22.4641%2032C20.9245%2034.6667%2017.0755%2034.6667%2015.5359%2032L0.813467%206.5C-0.726133%203.83333%201.19837%200.5%204.27757%200.5L33.7224%200.5C36.8016%200.5%2038.7261%203.83333%2037.1865%206.5L22.4641%2032Z%22%20fill%3D%22%23185A35%22%2F%3E%3C%2Fsvg%3E");*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn {*/
/*  color: #fff;*/
/*  font-size: 18px;*/
/*  font-weight: 700;*/
/*  padding: 20px 5px;*/
/*  border-radius: 10px;*/
/*  color: #00822d;*/
/*  background: #fff;*/
/*  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-hellogolf .content-tab .tab-btn {*/
/*    font-size: 16px;*/
/*    padding: 8px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    height: 66px;*/
/*  }*/
/*}*/
/*@media (max-width: 374px) {*/
/*  .page-hellogolf .content-tab .tab-btn {*/
/*    font-size: 14px;*/
/*    padding: 8px 4px;*/
/*  }*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn[data-item=data-2] {*/
/*  color: #ccb58a;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn[data-item=data-3] {*/
/*  color: #72af43;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn[data-item=data-4] {*/
/*  color: #185a35;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn.tab-btn--active {*/
/*  background: #00822d;*/
/*  color: #fff;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn.tab-btn--active::after {*/
/*  opacity: 1;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn.tab-btn--active[data-item=data-2] {*/
/*  background: #ccb58a;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn.tab-btn--active[data-item=data-3] {*/
/*  background: #72af43;*/
/*}*/
/*.page-hellogolf .content-tab .tab-btn.tab-btn--active[data-item=data-4] {*/
/*  background: #185a35;*/
/*}*/
/*.page-hellogolf .content-tab .tab-item {*/
/*  display: none;*/
/*}*/
/*.page-hellogolf .content-tab .tab-item.tab-item--active {*/
/*  display: block;*/
/*}*/
.page-hellogolf .content-tab .tab-item ul li a:hover {
  opacity: 0.8;
  text-decoration: none;
  color: initial;
}
.page-hellogolf #philosophy {
  background: #00783d;
  padding: 70px 40px 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-hellogolf #philosophy {
    padding: 50px 15px 60px;
    margin-top: -1px;
  }
}
.page-hellogolf #philosophy .first {
  font-weight: 700;
}
.page-hellogolf #philosophy p {
  color: #fff;
}
.page-hellogolf #philosophy p:nth-of-type(1) {
  font-size: 20px;
}
@media (max-width: 767px) {
  .page-hellogolf #philosophy p:nth-of-type(1) {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
}
.page-hellogolf #philosophy p:nth-of-type(2) {
  font-size: 14px;
  margin-bottom: 33px;
}
@media (max-width: 767px) {
  .page-hellogolf #philosophy p:nth-of-type(2) {
    margin-bottom: 45px;
  }
}
.page-hellogolf #philosophy a {
  max-width: 384px;
  height: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: #00783d;
  font-weight: bold;
  position: relative;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .page-hellogolf #philosophy a {
    max-width: 100%;
    margin: 0 12px;
  }
}
.page-hellogolf #philosophy a:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.page-hellogolf #jlpga-active {
  padding: 70px 40px 18px;
  background-color: #f8fdfa;
  background-image: url("../images/csr/img-sec02-16.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active {
    background-image: url("../images/csr/img-sec02-16-sp.png");
    background-size: 100% auto;
    padding: 50px 0 68px;
  }
}
.page-hellogolf #jlpga-active:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/hellogolf/hello-bk.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 700px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active:before {
    height: 44vw;
  }
}
.page-hellogolf #jlpga-active h2 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active h2 {
    font-size: 28px;
  }
}
.page-hellogolf #jlpga-active .sec-title {
  margin: -6px 0 48px;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .sec-title {
    margin: 0 0 20px;
  }
}
.page-hellogolf #jlpga-active .btn-img {
  display: inline-block;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .btn-img {
    display: block;
    margin: 0 0 8px;
    padding: 0;
  }
}
.page-hellogolf #jlpga-active .btn-img > svg {
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .btn-img > svg {
    height: 33px;
  }
}
.page-hellogolf #jlpga-active .txt {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.88px;
  margin: 0 0 51px;
  text-align: center;
  line-height: normal;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .txt {
    font-size: 20px;
    letter-spacing: 0.8px;
    margin: 0 0 27px;
  }
}
@media (max-width: 374px) {
  .page-hellogolf #jlpga-active .txt {
    font-size: 16px;
  }
}
.page-hellogolf #jlpga-active .txt.txt-green {
  color: #00822d;
}
.page-hellogolf #jlpga-active .txt.txt-lime {
  color: #ccb58a;
}
.page-hellogolf #jlpga-active .txt.txt-pink {
  color: #72af43;
}
.page-hellogolf #jlpga-active .txt.txt-blue {
  color: #185a35;
}
.page-hellogolf #jlpga-active .list-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .list-content {
    margin: 0 0 5px;
  }
}
.page-hellogolf #jlpga-active .list-content > li {
  position: relative;
  width: calc((100% - 45px) / 3);
  margin: 0 0 43px 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (max-width: 991px) {
  .page-hellogolf #jlpga-active .list-content > li {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .list-content > li {
    margin-bottom: 42px;
    width: 100%;
    margin-right: 0;
  }
}
.page-hellogolf #jlpga-active .list-content > li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .page-hellogolf #jlpga-active .list-content > li:nth-child(3n) {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .list-content > li:nth-child(3n) {
    margin-right: 0px;
  }
}
@media (max-width: 991px) {
  .page-hellogolf #jlpga-active .list-content > li:nth-child(2n) {
    margin-right: 0;
  }
}
.page-hellogolf #jlpga-active .list-content > li > a {
  display: block;
}
.page-hellogolf #jlpga-active .list-content > li > a:hover {
  opacity: 1;
}
.page-hellogolf #jlpga-active .list-content figure.image {
  aspect-ratio: 3/2;
}
.page-hellogolf #jlpga-active .list-content .image > img {
  width: 100%;
  display: block;
  aspect-ratio: 3/2;
  border-bottom: 1px solid #d9d9d9;
  object-fit: cover;
}
.page-hellogolf #jlpga-active .list-content .item-content {
  padding: 25px 20px 30px 25px;
  font-size: 12px;
  color: #333;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .list-content .item-content {
    padding: 31px 25px 28px;
    font-size: 14px;
    line-height: 1.8;
  }
}
.page-hellogolf #jlpga-active .list-content .item-content .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  letter-spacing: 0;
  min-height: 45px;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .list-content .item-content .title {
    margin: 0 0 13px;
    min-height: auto;
  }
}
.page-hellogolf #jlpga-active .list-content .item-content > p {
  text-overflow: ellipsis;
  overflow: hidden;
  letter-spacing: 0.48px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .list-content .item-content > p {
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}
.page-hellogolf #jlpga-active .list-content .item-content .tag {
  display: flex;
  flex-wrap: wrap;
}
.page-hellogolf #jlpga-active .list-content .item-content .tag p {
  max-width: 78px;
  width: 100%;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  padding: 0px 5px;
  font-size: 10px;
  font-weight: 700;
  margin: 0 10px 15px 0;
  min-height: 20px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .page-hellogolf #jlpga-active .list-content .item-content .tag p {
    font-size: 10px;
    padding: 0px 5px;
    max-width: 78px;
    min-height: 24px;
    line-height: 24px;
  }
}
.page-hellogolf #jlpga-active .list-content .item-content .tag p.green {
  background-color: #ccb58a;
}
.page-hellogolf #jlpga-active .list-content .item-content .tag p.pink {
  background-color: #72af43;
}
.page-hellogolf #jlpga-active .list-content .item-content .tag p.blue {
  background-color: #185a35;
}
.page-hellogolf #jlpga-active .list-content .item-content .tag p:last-child {
  margin-right: 0;
}
.page-hellogolf #charity {
  position: relative;
}
@media (max-width: 767px) {
  .page-hellogolf #charity {
    background: #00783d;
    padding: 40px 0 50px;
    z-index: 2;
  }
}
.page-hellogolf #charity:before {
  display: block;
  content: "";
  position: absolute;
  top: 48px;
  left: 0;
  background: url(../images/hellogolf/weve-green-top.png) no-repeat;
  background-position: center;
  width: 100%;
  height: 175px;
  background-size: 100% 70%;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-hellogolf #charity:before {
    top: -8vw;
    background: url(../images/hellogolf/weve-green-top-sp.png) no-repeat;
    height: 9vw;
    background-size: contain;
  }
}
.page-hellogolf #charity:after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 0;
  background: url(../images/hellogolf/weve-green-bottom.png) no-repeat;
  background-position: center;
  width: 100%;
  height: 200px;
  background-size: 100% 72%;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-hellogolf #charity:after {
    bottom: -9vw;
    background: url(../images/hellogolf/weve-green-bottom-sp.png) no-repeat;
    height: 10vw;
    background-size: contain;
  }
}
.page-hellogolf #charity .harity-inner {
  background: #00783d;
  z-index: 2;
  position: relative;
  margin-top: 162px; /* 擬似要素の高さ分のマージンを上に追加 */
  margin-bottom: 180px; /* 擬似要素の高さ分のマージンを下に追加 */
  padding-bottom: 53px;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .harity-inner {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.page-hellogolf #charity .harity-inner::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/hellogolf/event-bk.png) no-repeat;
  background-position: center;
  width: 100%;
  background-size: cover;
  z-index: -2;
  top: -200px;
  height: calc(100% + 550px);
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .harity-inner::before {
    background: url(../images/hellogolf/event-bk-sp.png) no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    top: -180px; /* 擬似要素の高さ分 */
    height: calc(100% + 360px); /* 擬似要素の高さを考慮 */
  }
}
.page-hellogolf #charity .harity-inner .sec-inner {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .harity-inner .sec-inner {
    padding-top: 10px;
  }
}
.page-hellogolf #charity .sec-title {
  color: #fff;
  font-size: 32px;
  margin: -8px 0 50px;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .sec-title {
    margin: -8px 0 25px;
    font-size: 26px;
  }
}
.page-hellogolf #charity .box-content {
  width: 100%;
  max-width: 996px;
  margin: 0 auto 50px;
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 60px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  gap: 20px;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content {
    margin: 0 auto 32px;
  }
}
.page-hellogolf #charity .box-content:last-child {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content:nth-of-type(2) {
    flex-flow: column-reverse;
  }
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content {
    flex-wrap: wrap;
    padding: 30px 20px;
  }
}
.page-hellogolf #charity .box-content .images {
  width: 443px;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content .images {
    width: 100%;
    margin: 0 0 10px;
    padding-right: 8px;
  }
}
.page-hellogolf #charity .box-content .images img {
  width: 100%;
}
.page-hellogolf #charity .box-content .content-charity {
  width: calc(100% - 428px);
  margin-top: 0px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content .content-charity {
    width: 100%;
    padding-left: 0;
  }
}
.page-hellogolf #charity .box-content .content-charity > p {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content .content-charity > p {
    margin: 0 0 23px;
    padding-right: 8px;
    letter-spacing: 0.64px;
    font-size: 16px;
    line-height: 1.7;
  }
}
.page-hellogolf #charity .box-content .content-charity .btn-more a {
  max-width: 340px;
}
.page-hellogolf #charity .box-content .content-charity .charity_logo01 {
  width: 372px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content .content-charity .charity_logo01 {
    width: auto;
    margin-left: 0;
  }
}
.page-hellogolf #charity .box-content .content-charity .charity_logo02 {
  width: 225px;
  margin-left: 25px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content .content-charity .charity_logo02 {
    width: 186px;
    margin-left: 0;
  }
}
.page-hellogolf #charity .box-content .content-charity .title {
  color: #00822d;
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 10px;
  line-height: 20px;
  padding-right: 0;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .page-hellogolf #charity .box-content .content-charity .title {
    line-height: 1.4;
    margin: 22px 0 10px;
  }
}
.page-hellogolf #charity .btn-more > a {
  margin: 0;
  padding: 10px 10px 9px;
}
@media (min-width: 1501px) {
  .page-hellogolf #club {
    margin-top: -15vw;
    margin-bottom: -2vw;
  }
}
@media (max-width: 1500px) {
  .page-hellogolf #club {
    margin-top: -200px;
  }
}
@media (max-width: 767px) {
  .page-hellogolf #club {
    padding-top: initial;
    margin-top: 0;
    margin-bottom: 60px;
  }
}
.page-hellogolf #club .club-flex {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 767px) {
  .page-hellogolf #club .club-flex {
    flex-flow: column;
    gap: 0;
  }
}
.page-hellogolf #club .club-flex .block {
  flex: 1;
}
.page-hellogolf #club .club-flex .block:nth-of-type(1) {
  /* 画像の初期非表示 */
  flex: 1.2;
}
.page-hellogolf #club .club-flex .block:nth-of-type(1) .club-image {
  position: relative;
  top: -10px;
}
@media (max-width: 767px) {
  .page-hellogolf #club .club-flex .block:nth-of-type(2) {
    background: #fff;
    margin: -105px 10px 0;
    z-index: 1;
    border-radius: 20px;
  }
}
.page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner {
  max-width: 384px !important;
  margin-top: 33px;
  max-width: 500px;
}
@media (max-width: 1400px) {
  .page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner {
    max-width: 35.7142857143vw;
  }
}
@media (max-width: 767px) {
  .page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner {
    max-width: 100%;
    padding: 20px;
    margin-top: 0;
  }
}
.page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner > img {
  width: 450px;
}
@media (max-width: 1400px) {
  .page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner > img {
    width: 32.1428571429vw;
  }
}
@media (max-width: 767px) {
  .page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner > img {
    width: 100%;
  }
}
.page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner p {
  font-size: 14px !important;
  line-height: 1.6;
  margin: 50px 0 !important;
  margin: 30px 0;
  font-size: 18px;
}
@media (max-width: 1400px) {
  .page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner p {
    margin: 2.1428571429vw 0;
  }
}
@media (max-width: 1400px) {
  .page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner p {
    font-size: 1.2857142857vw;
  }
}
@media (max-width: 767px) {
  .page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner p {
    margin: 30px 0 !important;
  }
}
.page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner a {
  width: 100%;
  height: 40px;
  background: #72af43;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  border-radius: 6px;
}
.page-hellogolf #club .club-flex .block:nth-of-type(2) .club-flex-inner a:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.page-hellogolf #training {
  position: relative;
  background: #ccb58a;
}
.page-hellogolf #training:before {
  display: block;
  content: "";
  position: absolute;
  top: -139px;
  left: 0;
  background: url(../images/hellogolf/weve-gray-top.png) no-repeat;
  background-position: center;
  width: 100%;
  height: 140px;
  background-size: 100% 100%;
  z-index: 0;
}
@media (max-width: 767px) {
  .page-hellogolf #training:before {
    top: -11vw;
    background: url(../images/hellogolf/weve-gray-top-sp.png) no-repeat;
    height: 12vw;
    background-size: contain;
  }
}
.page-hellogolf #training:after {
  content: "";
  position: absolute;
  bottom: -110px;
  left: 0;
  background: url(../images/hellogolf/weve-gray-bottom.png) no-repeat;
  background-position: center;
  width: 100%;
  height: 110px;
  background-size: 100% 130%;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-hellogolf #training:after {
    bottom: -42px;
    background: url(../images/hellogolf/weve-gray-bottom-sp.png) no-repeat;
    height: 11vw;
    background-size: contain;
  }
}
.page-hellogolf #training .training-inner {
  position: relative;
  padding-bottom: 16px;
  z-index: 2;
}
@media (max-width: 767px) {
  .page-hellogolf #training .training-inner {
    padding-bottom: 28px;
  }
}
.page-hellogolf #training .training-inner:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/hellogolf/golf-bk.png) no-repeat;
  background-position: top;
  width: 100%;
  background-size: 100%;
  z-index: 1;
  top: -60px;
  height: calc(100% + 340px);
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-hellogolf #training .training-inner:before {
    background-position: top;
    top: 0;
  }
}
.page-hellogolf #training .sec-inner {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-hellogolf #training .sec-inner {
    padding: 40px 0 20px;
  }
}
.page-hellogolf #training .sec-title {
  color: #fff;
  font-size: 32px;
  margin: -8px 0 63px;
}
@media (max-width: 767px) {
  .page-hellogolf #training .sec-title {
    font-size: 28px;
    margin: -8px 0 30px;
  }
}
.page-hellogolf #training .training-flex {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .page-hellogolf #training .training-flex {
    flex-flow: column;
    gap: 74px;
  }
}
.page-hellogolf #training .training-flex .block {
  flex: 1;
}
.page-hellogolf #training .training-flex .block .img {
  position: relative;
  z-index: 1;
}
.page-hellogolf #training .training-flex .block .img:before {
  display: block;
  content: "";
  position: absolute;
  left: -15px;
  top: -20px;
  background: url(../images/hellogolf/training-card.png) no-repeat;
  width: 100%;
  height: 100%;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-hellogolf #training .training-flex .block .img:before {
    left: -8px;
    top: -18px;
  }
}
.page-hellogolf #training .training-flex .block p:nth-of-type(1) {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}
.page-hellogolf #training .training-flex .block p:nth-of-type(2) {
  font-size: 14px;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .page-hellogolf #training .training-flex .block p:nth-of-type(2) {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 18px;
  }
}
.page-hellogolf #training .training-flex .block a {
  width: 100%;
  height: 40px;
  background: #00783d;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .page-hellogolf #training .training-flex .block a {
    width: 92%;
  }
}
.page-hellogolf #training .training-flex .block a:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.page-hellogolf #gallery {
  padding: 163px 0 100px;
  position: relative;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery {
    padding: 80px 0 100px;
  }
}
.page-hellogolf #gallery::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/hellogolf/gallery-bk.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery::before {
    background: url(../images/hellogolf/gallery-bk-sp.png) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
  }
}
.page-hellogolf #gallery .sec-title {
  margin: -8px 0 50px;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery .sec-title {
    margin: -8px 0 18px;
  }
}
.page-hellogolf #gallery ul.slider-list {
  display: flex!important;
  flex-flow: wrap;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery ul.slider-list {
    gap: 16px 5px;
  }
}
.page-hellogolf #gallery ul.slider-list li {
  width: calc(25% - 20px);
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.1));
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery ul.slider-list li {
    width: calc(50% - 5px);
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
    border: none;
  }
}
.page-hellogolf #gallery .sec-title {
  font-size: 32px;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery .sec-title {
    font-size: 28px;
  }
}
.page-hellogolf #gallery .slick-slide {
  margin: 0;
  padding: 0;
  border: none;
  display: block;
}
.page-hellogolf #gallery .slick-slide img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  margin: 0;
  padding: 0;
  border: none;
}
.page-hellogolf #gallery .slick-dots {
  bottom: -65px; /* ドットの位置を調整 */
}
@media (max-width: 767px) {
  .page-hellogolf #gallery .slick-dots {
    bottom: -50px;
  }
}
.page-hellogolf #gallery .slick-dots li {
  margin: 0 2px;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery .slick-dots li {
    margin: 0 4px;
  }
}
.page-hellogolf #gallery .slick-dots li button:before {
  font-size: 60px;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery .slick-dots li button:before {
    font-size: 45px;
  }
}
.page-hellogolf #gallery .slick-dots li.slick-active button:before {
  color: rgb(0, 130, 45);
}
.page-hellogolf #gallery .slick-dots li.slick-active button:before {
  opacity: 1;
}
.page-hellogolf #gallery .slick-dots li button:before {
  width: auto;
  height: auto;
  line-height: 0;
}
.page-hellogolf #gallery .slick-prev {
  left: -80px;
  background: url(../images/arrow-pre.png) no-repeat center;
}
.page-hellogolf #gallery .slick-next {
  right: -80px;
  background: url(../images/arrow.png) no-repeat center;
}
.page-hellogolf #gallery .slick-prev,
.page-hellogolf #gallery .slick-next {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  z-index: 2;
  background-size: 23px auto;
}
.page-hellogolf #gallery .slick-prev:before,
.page-hellogolf #gallery .slick-next:before {
  content: initial;
}
.page-hellogolf #gallery .btn,
.page-hellogolf #gallery input[type=submit],
.page-hellogolf #gallery button {
  transition: none;
  overflow: visible;
}
.page-hellogolf #gallery .slick-prev:hover,
.page-hellogolf #gallery .slick-prev:focus,
.page-hellogolf #gallery .slick-next:hover,
.page-hellogolf #gallery .slick-next:focus {
  opacity: 1 !important;
  visibility: visible !important;
}
@media (max-width: 767px) {
  .page-hellogolf #gallery .slick-arrow {
    display: none !important;
  }
}
.page-hellogolf #gallery .slick-dots li button:before {
  background: #ffffff;
}
.page-hellogolf #gallery .slick-dots li button:hover:before {
  opacity: 0.25;
}
.page-hellogolf #gallery .slick-dots li button:focus:before {
  opacity: 1;
}
@media screen and (max-width: 1350px) {
  .page-hellogolf #gallery .slick-next {
    background: none;
  }
  .page-hellogolf #gallery .slick-prev {
    right: 14px;
    background: none;
  }
}
.page-hellogolf footer .footer-link {
  border-top: 0 none;
}

/*------ hellogolf activities-junior ------*/
.page-junior {
  background: #fff;
  line-break: strict;
  word-break: normal !important;
  word-wrap: break-word;
  position: relative;
  padding-top: 1px;
}
.page-junior *, 
.page-junior::before, 
.page-junior::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.page-junior::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/hellogolf/hello-bk.png) no-repeat;
  background-size: cover;
  background-position: top;
  width: 100%;
  height: 700px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-junior::before {
    height: 44vw;
  }
}
.page-junior .sec-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1224px) {
  .page-junior .sec-inner {
    margin: 0 12px;
  }
}
.page-junior p {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.64px;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .page-junior p {
    font-size: 14px;
    letter-spacing: 0.56px;
    margin: 0 0 24px;
  }
}
.page-junior p:last-child {
  margin: 0;
}
.page-junior a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.page-junior .sec-title {
  color: #00822D;
  font-size: 40px;
  font-weight: 700;
  margin: -8px 0 46px;
  text-align: center;
  line-height: normal;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767px) {
  .page-junior .sec-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.12px;
    margin: 0px 0 21px;
  }
}

/* カテゴリータブCSS 20240815 */
/* エリア復活の場合、コメントアウト外す */

/*.page-junior .content-tab .tab-btns {*/
/*  display: flex;*/
/*  margin: 0 0 52px;*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-junior .content-tab .tab-btns {*/
/*    margin: 0 0 24px;*/
/*  }*/
/*}*/
/*.page-junior .content-tab .tab-btns > button {*/
/*  background: #fff;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  width: calc((100% - 72px) / 4);*/
/*  margin: 0 24px 0 0;*/
/*  transition: none;*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-junior .content-tab .tab-btns > button {*/
/*    width: calc((100% - 30px) / 4);*/
/*    margin: 0 10px 0 0;*/
/*  }*/
/*}*/
/*.page-junior .content-tab .tab-btns > button:nth-child(4n) {*/
/*  margin-right: 0;*/
/*}*/
/*.page-junior .content-tab .tab-btns > button::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 50%;*/
/*  top: calc(100% - 35px);*/
/*  transform: translateX(-50%);*/
/*  width: 49px;*/
/*  height: 49px;*/
/*  --svg: url('data:image/svg+xml,                    <svg xmlns="http://www.w3.org/2000/svg" width="38" height="34" viewBox="0 0 38 34" fill="none">                    <path d="M22.4641 32C20.9245 34.6667 17.0755 34.6667 15.5359 32L0.813469 6.5C-0.726131 3.83334 1.19837 0.5 4.27757 0.5L33.7224 0.5C36.8016 0.5 38.7261 3.83333 37.1865 6.5L22.4641 32Z" fill="%2300822D"/>                    </svg>');*/
/*  background-image: var(--svg);*/
/*  background-repeat: no-repeat;*/
/*  background-position: bottom center;*/
/*  background-size: contain;*/
/*  color: #00822D;*/
/*  opacity: 0;*/
/*  z-index: -1;*/
/*}*/
/*.page-junior .content-tab .tab-btns > button:nth-child(2)::after {*/
/*  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2238%22%20height%3D%2234%22%20viewBox%3D%220%200%2038%2034%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M22.4641%2032C20.9245%2034.6667%2017.0755%2034.6667%2015.5359%2032L0.813467%206.5C-0.726133%203.83333%201.19837%200.5%204.27757%200.5L33.7224%200.5C36.8016%200.5%2038.7261%203.83333%2037.1865%206.5L22.4641%2032Z%22%20fill%3D%22%23CCB58A%22%2F%3E%3C%2Fsvg%3E");*/
/*}*/
/*.page-junior .content-tab .tab-btns > button:nth-child(3)::after {*/
/*  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2238%22%20height%3D%2234%22%20viewBox%3D%220%200%2038%2034%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M22.4641%2032C20.9245%2034.6667%2017.0755%2034.6667%2015.5359%2032L0.813467%206.5C-0.726133%203.83333%201.19837%200.5%204.27757%200.5L33.7224%200.5C36.8016%200.5%2038.7261%203.83333%2037.1865%206.5L22.4641%2032Z%22%20fill%3D%22%2372AF43%22%2F%3E%3C%2Fsvg%3E");*/
/*}*/
/*.page-junior .content-tab .tab-btns > button:nth-child(4)::after {*/
/*  --svg: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2238%22%20height%3D%2234%22%20viewBox%3D%220%200%2038%2034%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M22.4641%2032C20.9245%2034.6667%2017.0755%2034.6667%2015.5359%2032L0.813467%206.5C-0.726133%203.83333%201.19837%200.5%204.27757%200.5L33.7224%200.5C36.8016%200.5%2038.7261%203.83333%2037.1865%206.5L22.4641%2032Z%22%20fill%3D%22%23185A35%22%2F%3E%3C%2Fsvg%3E");*/
/*}*/
/*.page-junior .content-tab .tab-btn {*/
/*  color: #FFF;*/
/*  font-size: 24px;*/
/*  font-weight: 700;*/
/*  padding: 24px 5px;*/
/*  border-radius: 10px;*/
/*  color: #00822D;*/
/*  background: #FFF;*/
/*  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-junior .content-tab .tab-btn {*/
/*    font-size: 16px;*/
/*    padding: 8px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    height: 66px;*/
/*  }*/
/*}*/
/*@media (max-width: 374px) {*/
/*  .page-junior .content-tab .tab-btn {*/
/*    font-size: 14px;*/
/*    padding: 8px 4px;*/
/*  }*/
/*}*/
/*.page-junior .content-tab .tab-btn[data-item=data-2] {*/
/*  color: #ccb58a;*/
/*}*/
/*.page-junior .content-tab .tab-btn[data-item=data-3] {*/
/*  color: #72af43;*/
/*}*/
/*.page-junior .content-tab .tab-btn[data-item=data-4] {*/
/*  color: #185a35;*/
/*}*/
/*.page-junior .content-tab .tab-btn.tab-btn--active {*/
/*  background: #00822D;*/
/*  color: #FFF;*/
/*}*/
/*.page-junior .content-tab .tab-btn.tab-btn--active::after {*/
/*  opacity: 1;*/
/*}*/
/*.page-junior .content-tab .tab-btn.tab-btn--active[data-item=data-2] {*/
/*  background: #ccb58a;*/
/*}*/
/*.page-junior .content-tab .tab-btn.tab-btn--active[data-item=data-3] {*/
/*  background: #72af43;*/
/*}*/
/*.page-junior .content-tab .tab-btn.tab-btn--active[data-item=data-4] {*/
/*  background: #185a35;*/
/*}*/
/*.page-junior .tab-btns {*/
/*  margin: 0 0 45px;*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-junior .tab-btns {*/
/*    margin: 0 0 30px;*/
/*  }*/
/*}*/
/*.page-junior .tab-btn {*/
/*  font-size: 18px;*/
/*  font-weight: 700;*/
/*  padding: 20px 5px 19px;*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-junior .tab-btn {*/
/*    font-size: 16px;*/
/*    padding: 16px 5px;*/
/*  }*/
/*}*/
/*.page-junior .content-tab .tab-item {*/
/*  display: none;*/
/*}*/
/*.page-junior .content-tab .tab-item.tab-item--active {*/
/*  display: block;*/
/*}*/
.page-junior .breadCrumb {
  margin: 17px auto 41px;
  max-width: 1200px;
  position: relative;
}
@media (max-width: 1224px) {
  .page-junior .breadCrumb {
    padding: 0 24px;
  }
}
@media (max-width: 991px) {
  .page-junior .breadCrumb {
    padding: 0 12px;
  }
}
@media (max-width: 767px) {
  .page-junior .breadCrumb {
    margin: 17px auto 47px;
  }
}
.page-junior .breadCrumb ol {
  display: flex;
  list-style: outside none none;
}
.page-junior .breadCrumb li {
  color: #878787;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 1.2px;
  position: relative;
}
.page-junior .breadCrumb li::after {
  content: "≫";
  color: #878787;
  margin: 0 4px;
}
@media (max-width: 767px) {
  .page-junior .breadCrumb li::after {
    margin: 0 6px;
  }
}
.page-junior .breadCrumb li a {
  color: #00822D;
}
.page-junior .breadCrumb li:last-child::after {
  content: none;
}
.page-junior #content {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 150px;
  position: relative;
}
@media (max-width: 1224px) {
  .page-junior #content {
    padding: 0 24px 80px;
  }
}
@media (max-width: 991px) {
  .page-junior #content {
    padding: 0 12px 60px;
  }
}
.page-junior .topCont h1 {
  color: #00822D;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  margin: 0 0 48px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-junior .topCont h1 {
    font-size: 28px;
    letter-spacing: 1.12px;
    margin: 0 0 31px;
  }
}
.page-junior .card-topnav {
  margin: 0 0 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-junior .card-topnav {
    margin: 0 0 21px 2px;
    text-align: left;
  }
}
.page-junior .card-topnav > p {
  margin: 0 20px 0 0;
  font-weight: 700;
  font-size: 16px;
}
.page-junior .card-topnav select {
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #D1D1D1;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 32px 8px 20px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.72px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/csr/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px auto;
  width: 100%;
  max-width: 298px;
}
@media (max-width: 767px) {
  .page-junior .card-topnav select {
    max-width: 100%;
    flex: 1;
  }
}
.page-junior .tab-item .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.1);
  margin: 0 0 21px;
}
@media (max-width: 767px) {
  .page-junior .tab-item .item {
    margin: 0 0 10px;
  }
}
.page-junior .tab-item .item a {
  width: 100%;
}
.page-junior .content-activity {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-right: 5px;
}
.page-junior .content-activity .block:nth-of-type(1) {
  border-right: 1px solid #d9d9d9;
}
.page-junior .content-activity .block:nth-of-type(2) {
  width: 100%;
  padding: 15px 15px 15px 20px;
}
@media (max-width: 767px) {
  .page-junior .content-activity .block:nth-of-type(2) {
    padding: 10px;
  }
}
.page-junior .content-activity .block > img {
  width: 121px;
  height: 82px;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
  border-radius: 6px 0 0 6px;
}
@media (max-width: 767px) {
  .page-junior .content-activity .block > img {
    width: 68vw;
    height: 28.8vw;
  }
}
/*.page-junior .content-activity .block .category {*/
/*  display: flex;*/
/*  gap: 10px;*/
/*  margin-bottom: 5px;*/
/*}*/
/*@media (max-width: 767px) {*/
/*  .page-junior .content-activity .block .category {*/
/*    flex-flow: wrap;*/
/*    gap: 5px;*/
/*  }*/
/*}*/
/*.page-junior .content-activity .block .category span {*/
/*  font-size: 10px;*/
/*  font-weight: 700;*/
/*  border-radius: 4px;*/
/*  color: #fff;*/
/*  padding: 5px 10px;*/
/*  min-width: 80px;*/
/*}*/
/*.page-junior .content-activity .block .category span.no1 {*/
/*  background: #ccb58a;*/
/*}*/
/*.page-junior .content-activity .block .category span.no2 {*/
/*  background: #72af43;*/
/*}*/
/*.page-junior .content-activity .block .category span.no3 {*/
/*  background: #185a35;*/
/*}*/
.page-junior .content-activity .block p {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  width: 100%;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .page-junior .content-activity .block p {
    font-size: 13px;
    line-height: 1.2;
  }
}
.page-junior .not_found {
  padding: 20px 0px 20px 20px; 
  font-size: 16px; 
  font-weight: 700; 
  width: 100%;
}
.page-junior .pagination {
  margin: 39px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .page-junior .pagination {
    margin: 42px 0 0;
  }
}
.page-junior .pagination li {
  display: inline-block;
  vertical-align: middle;
}
.page-junior .pagination li.active {
  background-color: initial;
}
.page-junior .pagination li a {
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  margin: 0 1px;
  color: #333;
  background-color: transparent;
  width: 28px;
  line-height: 28px;
  padding: 0;
  text-align: center;
  display: inline-block;
}
.page-junior .pagination li a:hover {
  cursor: pointer;
  color: #fff!important;
  background-color: #00822D;
}
.page-junior .pagination li.active a {
  color: #fff;
  background-color: #00822D;
}
.page-junior .pagination li.previous {
  left: -20px;
}
.page-junior .pagination li.next {
  right: -20px;
}
.page-junior .pagination li.previous, 
.page-junior .pagination li.next {
  position: relative;
}
.page-junior footer .footer-link {
  border-top: 0 none;
}/*# sourceMappingURL=junior.css.map */