@charset "UTF-8";

/* ------------------------------
- column
------------------------------ */

html { 
  scroll-behavior: smooth; 
}

a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: .60;
}
/* ------------------------------
- column head slider
------------------------------ */
.column_head {
  display: flex;
  justify-content: space-between;
  padding: 11.24px 0 31.65px 0;
}

.column_head ul {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.column_head_heading img {
  width: 169px;
  height: auto;
}

.column_head_controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 119px;
  height: 40px;
  background-color: #132E7C;
  color: #fff;
  font-size: 14px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-list:hover { 
  background-color: #183b9e; 
}

.btn-list .arrow {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 9999px;
}

.btn-list .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 2px;
  background: #fff;
  border-radius: 9999px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.select-wrapper {
  position: relative;
  display: inline-block;
}

.select {
  width: 200px;
  height: 40px;
  border: 1px solid #BBBBBB;
  border-radius: 3px;
  padding: 0 34px 0 14px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: none;
}

.select-wrapper::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 12px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #7C7C7C;
  border-bottom: 2px solid #7C7C7C;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}


.select:focus {
  outline: none;
  border-color: #1E9244;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-input {
  width: 170px;
  height: 40px;
  border: none;
  padding: 0 14px;
  font-size: 13px;
  color: #3b3b3b;
  background: #F5F5F5;
  border-radius: 3px 0 0 3px;
}

.search-input::placeholder {
  color: #9E9E9E;
}

.search-input:focus {
  outline: none;
  border-color: #1E9244;
}

.search-btn {
  width: 40px;
  height: 40px;
  background-color: #1E9244;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.search-btn:hover { 
  background-color: #167c38; 
}

.search-btn img {
  width: 15.54px;
  height: 15.54px;
}

.column-slider {
  --card-w: 720px;
  --img-h: 480px;
  --card-h: 580px;
  --gap: 60px;
  --peek: 320px;
  position: relative;
  padding: 40px 0 0;
}

.column-slider .slider-viewport {
  max-width: min(100vw, calc(var(--card-w) + var(--peek)*2 + var(--gap)*2));
  height: var(--card-h);
  margin: 0 auto;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.column-slider .slider-bottom-bg {
  position: absolute;
  left: -9999px;
  right: -9999px;
  top: calc(var(--card-h) - 188px);
  height: 256px;
  background: #1E9244;
  z-index: 0;
}

.column-slider .slider-track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform .45s ease;
  position: relative;
  z-index: 1;
}

.column-slider .slider-item {
  width: var(--card-w);
  height: var(--card-h);
  flex: 0 0 var(--card-w);
}

.column-slider .slider-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.column-slider .slider-item a:hover {
    transform: translateY(-6px);
    opacity: 1;
  }

.column-slider .slider-img {
  width: var(--card-w);
  height: var(--img-h);
  overflow: hidden;
  background: #f3f3f3;
}

.column-slider .slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.column-slider .slider-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  background-color: white;
  padding: 15px 20px 33px 20px;
  height: 54px;
}

.column-slider .slider-arrow {
  --offset-y: calc((var(--card-h) - var(--img-h)) / 2);
  position: absolute;
  top: calc(50% - var(--offset-y));
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 5px;
  background: #132E7C;
  cursor: pointer;
  z-index: 2;
}

.column-slider .slider-arrow:hover {
  opacity: .7;
  transition: all 0.3s ease;
}

.column-slider .slider-arrow--prev {
  left: calc(50% - (var(--card-w) / 2));
  transform: translate(-50%, -50%);
}

.column-slider .slider-arrow--next {
  right: calc(50% - (var(--card-w) / 2));
  transform: translate(50%, -50%);
}

.column-slider .slider-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 9999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.column-slider .slider-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background: #fff;
}

.column-slider .slider-arrow--next::after {
  right: 11px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.column-slider .slider-arrow--prev::after {
  left: 11px;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}

.column-slider .slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -36px;
  display: flex;
  gap: 10px;
  justify-content: center;
  z-index: 3;
}

.column-slider .slider-dots button {
  width: 36px;
  height: 6px;
  border: 0;
  background: #FFF;
  opacity: 0.4;
  cursor: pointer;
}

.column-slider .slider-dots button.is-active {
  background: #FFF;
  opacity: 1;
}

@media (max-width: 1600px) {
  .column-slider { --peek: 220px; }
}

@media (max-width: 1360px) {
  .column-slider { --peek: 120px; }
}

@media (max-width: 1160px) {
  .column-slider { --peek: 40px; }
}

@media (max-width: 860px) {
  .column-slider { --peek: 0px; }
}

@media only screen and (max-width: 768px) {
  .column-slider{
    --card-w: 280px;
    --img-h: 180px;
    --card-h: 292px;
    --gap: 20px;
    --peek: 24px;
    position: relative;
    padding: 46px 0 0;
  }

  .column-slider .slider-viewport{
    width: 100%;
    height: var(--card-h);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    max-width: none;
  }

  .column-slider .slider-bottom-bg{
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--card-h) - 158px);
    height: 158px;
    background: #1E9244;
    z-index: 0;
  }

  .column-slider .slider-track {
    display: flex;
    gap: var(--gap);
    width: max-content;
    margin: 0 auto;
    will-change: transform;
    transition: transform 1.2s ease;
    justify-content: center;
  }

  .column-slider .slider-item{
    width: var(--card-w);
    height: var(--card-h);
    flex: 0 0 var(--card-w);
  }

  .column-slider .slider-img{
    width: 100%;
    height: var(--img-h);
    background: #f3f3f3;
    overflow: hidden;
  }
  .column-slider .slider-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .column-slider .slider-title{
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    background: #fff;
    padding: 10px;
    height: 40px;
  }

  .column-slider .slider-arrow{
    position: absolute;
    top: calc(54% - ((var(--card-h) - var(--img-h)) / 2));
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 5px;
    background: #132E7C;
    z-index: 2;
  }
  
  .column-slider .slider-arrow--prev{ 
    left: calc(50% - (var(--card-w) / 2));
    transform: translate(-50%, -50%);
  }
  .column-slider .slider-arrow--next{ 
    right: calc(50% - (var(--card-w) / 2));
    transform: translate(50%, -50%);
  }

  .column-slider .slider-arrow::before{
    content:"";
    position:absolute; 
    top:50%; 
    left:50%;
    width:18px; 
    height:2px; 
    border-radius:9999px; 
    background:#fff;
    transform:translate(-50%,-50%);
  }
  .column-slider .slider-arrow--prev::after,
  .column-slider .slider-arrow--next::after{
    content:""; 
    position:absolute; 
    top:50%; 
    width:8px; 
    height:2px; 
    border-radius:9999px; 
    background:#fff;
  }
  .column-slider .slider-arrow--prev::after{ 
    left:11px; 
    transform:translateY(-50%) rotate(-45deg); 
  }
  .column-slider .slider-arrow--next::after{ 
    right:11px; 
    transform:translateY(-50%) rotate(45deg); }

  .column-slider .slider-dots{
    position: absolute;
    left: 0; 
    right: 0; 
    bottom: 24px;
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    z-index: 3;
  }
  .column-slider .slider-dots button{
    width: 30px; 
    height: 6px; 
    border: 0; 
    border-radius: 9999px;
    background: rgba(255,255,255,.5); 
    cursor: pointer;
  }
  .column-slider .slider-dots button.is-active{ 
    background:#fff; 
  }
}



.filter-overlay-toggle {
  display: none;
}

.filter-close-li {
  display: none;
}

@media only screen and (max-width: 768px) {
  .column_head {
    justify-content: center;
    flex-direction: column;
    padding: 0;
  }

  .column_head .column_head_controls  {
    position: relative;
    margin-top: 40px;
  }

  .column_head ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .column_head ul > li {
    width: 280px;
  }

  .btn-list {
    width: 280px;
    height: 50px;
    gap: 130px;
  }

  .filter-form.bottommask {
    position: relative;
    overflow: hidden;
  }

  .filter-form.bottommask::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.9) 100%
    );
    pointer-events: none;
  }
  .column_head.is-open .filter-form.bottommask::after {
    opacity: 0;
  }

  .select-wrapper,
  .search-form {
    width: 280px;
  }

  .select {
    width: 100%;
    height: 50px;
  }

  .search-form {
    display: flex;
    align-items: center;
  }

  .search-input {
    width: auto;
    height: 50px;
    flex: 1 1 auto;
  }

  .search-btn {
    width: 50px;
    height: 50px;
    border-radius: 0 3px 3px 0;
  }

  .filter-panel-li {
    max-height: 48px;
    overflow: hidden;
    transition: max-height .35s ease, -webkit-mask-image .35s ease, mask-image .35s ease;
  }

  .filter-panel-li .filter-overlay-toggle {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 12px;
    color: #333;
    text-decoration: underline;
    cursor: pointer;
    z-index: 2;
  }

  .column_head.is-open .filter-panel-li {
    max-height: 1200px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .column_head.is-open .filter-panel-li .filter-overlay-toggle {
    display: none;
  }

  .filter-close-li {
    display: none;
    justify-content: center;
    width: 280px;
    margin: 8px auto 0;
  }

  .column_head.is-open .filter-close-li {
    display: flex;
  }

  .filter-close {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 12px;
    color: #333;
    text-decoration: underline;
    cursor: pointer;
  }
}




/* column bar PC*/
@media only screen and (min-width:769px){
  .column-columnbar {
    background-color: #F5F5F5;
    height: 80px;
    padding: 28px 170px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-top: 68px;
  }

  .columnbar-inner {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center; 
  }

  .columnbar-line {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    min-width: 0;
  }

  .columnbar-head {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 24px;
  }

  .columnbar-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 24px;
    background-color: #D71318;
    color: #fff;
  }

  .columnbar-label p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .columnbar-date {
    font-size: 14px;
    font-weight: 400;
    color: #6E6E6E;
    line-height: 1; 
  }

  .columnbar-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    text-decoration: underline;
    line-height: 1.5;
  }
}

/* column bar SP*/
@media only screen and (max-width: 768px) {
  .column-columnbar {
    background-color: #F5F5F5;
    padding: 16px 20px;
    height: 97px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  .columnbar-inner {
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center; 
  }

  .columnbar-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    display: flex;
    width: 100%;
    min-width: 0;
  }

  .columnbar-head {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 24px;
  }

  .columnbar-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 24px;
    background-color: #D71318;
    color: #fff;
  }

  .columnbar-label p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
  }

  .columnbar-date {
    font-size: 14px;
    font-weight: 400;
    color: #6E6E6E;
    line-height: 1; 
  }

  .columnbar-title {
    font-size: 13px;
    white-space: normal;
    text-decoration: underline;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
  }
}


/*各カテゴリーの記事PC*/
.column_cat_block {
  text-align: center;
  margin-top: 50px;
  padding: 32px 60px 40px 60px;
  background-color: #F1F9F6;
}

.column_cat_block .en {
  font-family: 'Allura', cursive;
  font-size: 20px;
  color: #1E9244;
  margin: 0;
}

.column_cat_block .ja {
  font-weight: 700;
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 32px;
}

.column_cat_list {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  column-gap: 10px;
  row-gap: 9.86px;
  justify-content: center;
}

.cat_item {
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  width: 320px;
  height: 54px;
  padding: 0 16px 0 20px;
  border: 1px solid #132E7C;
  border-radius: 5px;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  box-sizing: border-box;
}

.cat_item .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #1E9244;
  border-bottom: 2px solid #1E9244;
  transform: rotate(45deg);
}

/* sp */
@media only screen and (max-width: 768px) {
  .column_cat_block {
    text-align: center;
    margin-top: 40px;
    padding: 24px 20px 40px 20px;
    background-color: #F1F9F6;
  }

  .column_cat_block .en {
    font-family: 'Allura', cursive;
    font-size: 15px;
    color: #1E9244;
    margin: 0 auto;
  }

  .column_cat_block .ja {
    font-weight: 700;
    font-size: 20px;
    margin: 8px auto 24px;
  }

  .column_cat_list {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 10px;
    justify-content: center;
  }

  .cat_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 280px;
    width: 100%;
    height: 50px;
    padding: 10.5px 9px 10.5px 7px;
    border: 1px solid #132E7C;
    border-radius: 5px;
    background: #fff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    box-sizing: border-box;
  }

  .cat_item .arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.9px solid #1E9244;
    border-bottom: 1.9px solid #1E9244;
    transform: rotate(45deg);
  }
}


/*最新の記事*/
@media only screen and (min-width:769px){
  .column-latest {
    margin-top: 80px;
    margin-bottom: 100px;
  }

  .column-latest .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
    justify-items: center;
  }

  .column-latest .card {
    width: 340px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .column-latest .card:hover {
    transform: translateY(-4px);
  }

  .column-latest .card a {
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .column-latest .card img {
    width: 100%;
    height: 226px;
    object-fit: cover;
  }

  .column-latest .card-body {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    min-height: 206px;
  }

  .column-latest .card-body time {
    font-size: 13px;
    color: #999999;
    display: block;
    margin-bottom: 16px;
  }

  .column-latest .card-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .column-latest .card-body p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
  }

  .column-latest .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .column-latest .categories a {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #1E9244;
    color: #1E9244;
    font-size: 13px;
    font-weight: 400;
    border-radius: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
}

/* SP */
@media only screen and (max-width: 768px) {
  .column-latest {
    max-width: 728px;
    width: 90%;
    margin: 60px auto 0 auto;
  }

  .column-latest .section-head{
    margin-bottom: 20px;
  }

  .column-latest .card-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .column-latest .card {
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .column-latest .card:hover {
    transform: translateY(-4px);
  }

  .column-latest .card a {
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .column-latest .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .column-latest .card-body {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    min-height: none;
  }

  .column-latest .card-body time {
    font-size: 13px;
    color: #999999;
    display: block;
    margin-bottom: 14px;
  }

  .column-latest .card-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
  }

  .column-latest .card-body p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
  }

  .column-latest .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .column-latest .categories a {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #1E9244;
    color: #1E9244;
    font-size: 11px;
    font-weight: 400;
    border-radius: 20px;
    line-height: 1.5;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }
}


/* 人気のタグ */
@media only screen and (min-width:769px){

  .column-tags {
    background-color: #F1F9F6;
    height: 158px;
    padding: 40px;
    margin-top: 80px;
    text-align: center;
    box-sizing: border-box;
  }

  .column-tags-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
  }

  .column-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .column-tags .tag-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    border: 1px solid #1E9244;
    border-radius: 14px;
    padding: 8px 12px;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
  }

  .column-tags .tag-list li a::before {
    content: "#";
    color: #1E9244;
    margin-right: 2px;
  }

}
/* SP */
@media only screen and (max-width: 768px) {
  .column-tags {
    background-color: #F1F9F6;
    height: fit-content;
    padding: 32px 20px;
    margin-top: 60px;
    text-align: center;
    box-sizing: border-box;
  }

  .column-tags-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
  }

  .column-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .column-tags .tag-list li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    border: 1px solid #1E9244;
    border-radius: 14px;
    padding: 6px 12px;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
  }

  .column-tags .tag-list li a::before {
    content: "#";
    color: #1E9244;
    margin-right: 2px;
  }
}


/* おすすめコラム */
@media only screen and (min-width:769px){
  .column-recommend {
    margin-top: 80px;
  }

  .column-recommend .section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #94D37E;
    margin-bottom: 40px;
    position: relative;
  }

  .column-recommend .section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 40px;
    height: 3px;
    background: #94D37E;
    transform: translateY(14px);
  }

  .column-recommend .section-head-icon {
    height: 28px;
  }

  .column-recommend .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
  }

  .column-recommend .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
    justify-items: center;
  }

  .column-recommend .card {
    width: 340px;
    height: 450px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .column-recommend .card:hover {
    transform: translateY(-4px);
  }

  .column-recommend .card a {
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .column-recommend .card img {
    width: 100%;
    height: 226px;
    object-fit: cover;
  }

  .column-recommend .card-body {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
  }

  .column-recommend .card-body time {
    font-size: 13px;
    color: #999999;
    display: block;
    margin-bottom: 16px;
  }

  .column-recommend .card-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .column-recommend .card-body p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
  }

  .column-recommend .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .column-recommend .categories .cat-chip {
    display: flex;
    align-items: center;
    padding: 2px 10px;
    border: 1px solid #1E9244;
    color: #1E9244;
    font-size: 13px;
    font-weight: 400;
    border-radius: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .column-recommend .categories .cat-chip:hover {
    background: #1E9244;
    color: #fff;
  }
}

/* SP */
@media only screen and (max-width: 768px) {
  .column-recommend {
    max-width: 728px;
    width: 90%;
    margin: 60px auto 0 auto;
  }

  .column-recommend .section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #94D37E;
    margin-bottom: 40px;
    position: relative;
  }

  .column-recommend .section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 40px;
    height: 3px;
    background: #94D37E;
    transform: translateY(14px);
  }

  .column-recommend .section-head-icon {
    height: 28px;
  }

  .column-recommend .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
  }

  .column-recommend .card-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .column-recommend .card {
    max-height: 430px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .column-recommend .card:hover {
    transform: translateY(-4px);
  }

  .column-recommend .card a {
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .column-recommend .card img {
    width: 100%;
    height: 232px;
    object-fit: cover;
  }

  .column-recommend .card-body {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: none;
  }

  .column-recommend .card-body time {
    font-size: 13px;
    color: #999999;
    display: block;
    margin-bottom: 14px;
  }

  .column-recommend .card-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
  }

  .column-recommend .card-body p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
  }

  .column-recommend .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .column-recommend .categories .cat-chip {
    display: flex;
    align-items: center;
    padding: 2px 10px;
    border: 1px solid #1E9244;
    color: #1E9244;
    font-size: 13px;
    font-weight: 400;
    border-radius: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .column-recommend .categories .cat-chip:hover {
    background: #1E9244;
    color: #fff;
  }
}



/* カテゴリに関する記事 PC */
@media only screen and (min-width:769px){
  .column-category {
    display: block;
    margin-top: 60px;
  }

  .category-row {
    padding: 80px 170px;
  }

  .category-row--bg {
    background: #F7F7F7;
  }

  .category-row__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 50px;
    row-gap: 0;
    max-width: 1100px;
    margin: 0 auto;
  }

  .column-latest .card > .card-link {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .category-set {
    width: 100%;
    max-width: 525px;
    margin: 0 auto;
    scroll-margin-top: 260px;
  }

  .category-set .section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #94D37E;
    margin-bottom: 20px;
    position: relative;
  }

  .category-set .section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 40px;
    height: 2px;
    background: #94D37E;
    transform: translateY(14px);
  }

  .category-set .section-head-icon {
    height: 28px;
  }

  .category-set .section-head-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
  }

  .category-set__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .cat-card {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #D9D9D9;
    min-height: 180px;
  }

  .cat-card__img {
    width: 160px;
    height: 106px;
    flex: 0 0 160px;
    overflow: hidden;
    border-radius: 6px;
  }

  .cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cat-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cat-card__date {
    font-size: 13px;
    color: #999;
  }

  .cat-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
  }

  .cat-card__title a {
    color: #333;
    text-decoration: none;
  }

  .cat-card__title a:hover {
    text-decoration: underline;
  }

  .cat-card__excerpt {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
  }

  .cat-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }

  .cat-chip {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid #1E9244;
    color: #1E9244;
    font-size: 12px;
    border-radius: 13px;
    text-decoration: none;
    line-height: 1.6;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }

  .cat-chip:hover {
    background: #1E9244;
    color: #fff;
    border-color: #1E9244;
  }

  .category-set__btn {
    text-align: center;
  }

  .category-set__btn .btn {
    display: inline-flex;
    gap: 61px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 60px;
    border-radius: 5px;
    background: #132E7C;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease;
  }

  .category-set__btn .btn:hover {
    background: #1a3c9a;
  }

  .arrow-right {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 2px;
    margin-left: 10px;
    margin-top: 4.3px;
    border-radius: 9999px;
    background-color: #000000;
  }

  .arrow-right::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: #000000;
    transform: rotate(45deg);
    transform-origin: calc(100% - 1px) 50%;
  }

  .category-set__btn .btn .arrow-right,
  .category-set__btn .btn .arrow-right::before {
    background-color: #ffffff;
  }
}

/* SP */
@media only screen and (max-width: 768px) {
  .column-category {
    display: block;
    margin: 60px auto 0 auto;
  }

  .column-category .category-row {
    background: none;
    padding: 0;
  }

  .category-row--bg {
    background: none;
  }

  .category-row__inner {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 0;
    margin: 0 auto;
  }

  .category-row__inner .category-set:nth-child(even) {
    background-color: #F7F7F7;
  }

  .category-set {
    width: 100%;
    max-width: 525px;
    padding: 40px 0 60px;
    margin: 0 auto;
    box-sizing: border-box;
    scroll-margin-top: 80px;
  }

  .category-set .section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #94D37E;
    margin-bottom: 20px;
    position: relative;
  }

  .category-set .section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 40px;
    height: 2px;
    background: #94D37E;
    transform: translateY(14px);
  }

  .category-set .section-head-icon {
    height: 28px;
  }

  .category-set .section-head-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
  }

  .category-set__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .category-set__inner {
    width: 90%;
    margin: 0 auto;
  }

  .cat-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #D9D9D9;
    min-height: none;
  }

  .cat-card__img {
    overflow: hidden;
    border-radius: 6px;
  }

  .cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cat-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cat-card__date {
    font-size: 13px;
    color: #999;
  }

  .cat-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
  }

  .cat-card__title a {
    color: #333;
    text-decoration: none;
  }

  .cat-card__title a:hover {
    text-decoration: underline;
  }

  .cat-card__excerpt {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
  }

  .cat-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
  }

  .cat-chip {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid #1E9244;
    color: #1E9244;
    font-size: 12px;
    border-radius: 13px;
    text-decoration: none;
    line-height: 1.6;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }

  .cat-chip:hover {
    background: #1E9244;
    color: #fff;
    border-color: #1E9244;
  }

  .category-set__btn {
    text-align: center;
  }

  .category-set__btn .btn {
    display: inline-flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    height: 50px;
    border-radius: 5px;
    background: #132E7C;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .25s ease;
  }

  .arrow-right {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 2px;
    margin-left: 10px;
    margin-top: 4.3px;
    border-radius: 9999px;
    background-color: #000000;
  }

  .arrow-right::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background-color: #000000;
    transform: rotate(45deg);
    transform-origin: calc(100% - 1px) 50%;
  }

  .category-set__btn .btn .arrow-right,
  .category-set__btn .btn .arrow-right::before {
    background-color: #ffffff;
  }
}




/* 人気ランキング */
.column-ranking {
  margin-top: 80px;
}

.rank-tabs-wrap {
  background: #EDEDED;
  padding: 4px;
  border-radius: 16px 16px 0 0;
}

.rank-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.rank-tab {
  width: 100%;
  padding: 14px 0;
  font-size: 20px;
  font-weight: 700;
  border: 0;
  border-radius: 12px 12px 0 0;
  background: #EDEDED;
  color: #333;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.rank-tab.is-active {
  background: #fff;
  color: #1E9244;
  z-index: 3;
}

.rank-panels {
  border: 4px solid #EDEDED;
  border-radius: 0;
  padding: 32px 51px 40px 51px;
  position: relative;
  margin-top: -8px;
  background: #fff;
}

.rank-panel {
  display: none;
}

.rank-panel.is-active {
  display: block;
}

.rank-slider {
  position: relative;
}

.rank-viewport {
  overflow: hidden;
}

.rank-track {
  display: flex;
  transition: transform .4s ease;
}

.rank-slide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  min-width: 100%;
}

.rank-card {
  background: #fff;
}

.rank-card__media {
  position: relative;
  overflow: hidden;
  height: 175px;
}

.rank-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rank-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  width: 46.5px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #132E7C;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.rank-badge[data-rank="1"],
.rank-badge[data-rank="2"],
.rank-badge[data-rank="3"],
.rank-badge[data-rank="4"],
.rank-badge[data-rank="5"] {
  background: transparent;
  color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.rank-badge[data-rank="1"] { 
  background-image: url("../images/column/ranking1.png"); 
}
.rank-badge[data-rank="2"] { 
  background-image: url("../images/column/ranking2.png"); 
}
.rank-badge[data-rank="3"] { 
  background-image: url("../images/column/ranking3.png"); 
}
.rank-badge[data-rank="4"] { 
  background-image: url("../images/column/ranking4.png"); 
}
.rank-badge[data-rank="5"] { 
  background-image: url("../images/column/ranking5.png"); 
}

.rank-card__body {
  margin-top: 12px;
}

.rank-date {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 6px;
}

.rank-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
}

.rank-title a {
  color: #333;
  text-decoration: none;
}

.rank-title a:hover {
  text-decoration: underline;
}

.rank-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.rank-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cat-chip {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #1E9244;
  color: #1E9244;
  font-size: 12px;
  border-radius: 13px;
  text-decoration: none;
  line-height: 1.6;
  transition: background .2s ease, color .2s ease;
}

.cat-chip:hover {
  background: #1E9244;
  color: #fff;
}

.ranking-arrow {
  position: absolute;
  top: 28%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 0;
  background: #132E7C;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}

.ranking-arrow:hover {
  opacity: .7;
  transition: all 0.3s ease;
}

.ranking-arrow--prev {
  left: -22px;
}

.ranking-arrow--next {
  right: -22px;
}

.ranking-arrow::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 9999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.ranking-arrow::after {
  content: "";
  position: absolute;
  top: 55%;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background: #fff;
}

.ranking-arrow--next::after {
  right: 11px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.ranking-arrow--prev::after {
  left: 11px;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}

.rank-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.rank-dot {
  width: 36px;
  height: 6px;
  border-radius: 9999px;
  background: #D9E3F7;
  border: 0;
  cursor: pointer;
}

.rank-dot.is-active {
  background: #132E7C;
}

/* SP */
@media only screen and (max-width: 768px) {
  .column-ranking {
    max-width: 728px;
    width: 90%;
    margin: 60px auto 0 auto;
  }

  .rank-tabs-wrap {
    background: #EDEDED;
    padding: 4px;
    border-radius: 16px 16px 0 0;
  }

  .rank-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .rank-tab {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
    border: 0;
    border-radius: 14px 14px 0 0;
    background: #EDEDED;
    color: #333;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }

  .rank-tab.is-active {
    background: #fff;
    color: #1E9244;
    z-index: 3;
  }

  .rank-panels {
    border: 4px solid #EDEDED;
    border-radius: 0;
    padding: 24px 31px 58px 31px;
    position: relative;
    margin-top: -8px;
    background: #fff;
  }

  .rank-panel {
    display: none;
  }

  .rank-panel.is-active {
    display: block;
  }

  .rank-slider {
    position: relative;
  }

  .rank-viewport {
    overflow: hidden;
  }

  .rank-track {
    display: flex;
    transition: transform .4s ease;
  }

  .rank-slide {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    min-width: 100%;
  }

  .rank-card {
    background: #fff;
  }

  .rank-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
  }

  .rank-card__media img {
    width: 100%;
    height: auto;
    display: block;
  }

  .rank-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 46.5px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #132E7C;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
  }

  .rank-badge[data-rank="1"],
  .rank-badge[data-rank="2"],
  .rank-badge[data-rank="3"],
  .rank-badge[data-rank="4"],
  .rank-badge[data-rank="5"] {
    background: transparent;
    color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .rank-badge[data-rank="1"] { background-image: url("../images/column/ranking1.png"); }
  .rank-badge[data-rank="2"] { background-image: url("../images/column/ranking2.png"); }
  .rank-badge[data-rank="3"] { background-image: url("../images/column/ranking3.png"); }
  .rank-badge[data-rank="4"] { background-image: url("../images/column/ranking4.png"); }
  .rank-badge[data-rank="5"] { background-image: url("../images/column/ranking5.png"); }

  .rank-card__body {
    margin-top: 12px;
  }

  .rank-date {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 6px;
  }

  .rank-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 10px;
  }

  .rank-title a {
    color: #333;
    text-decoration: none;
  }

  .rank-title a:hover {
    text-decoration: underline;
  }

  .rank-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .rank-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .cat-chip {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid #1E9244;
    color: #1E9244;
    font-size: 12px;
    border-radius: 13px;
    text-decoration: none;
    line-height: 1.6;
    transition: background .2s ease, color .2s ease;
  }

  .cat-chip:hover {
    background: #1E9244;
    color: #fff;
  }

  .ranking-arrow {
    position: absolute;
    top: 28%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 0;
    background: #132E7C;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
  }

  .ranking-arrow--prev {
    left: -22px;
  }

  .ranking-arrow--next {
    right: -22px;
  }

  .ranking-arrow::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 9999px;
    background: #fff;
    transform: translate(-50%, -50%);
  }

  .ranking-arrow::after {
    content: "";
    position: absolute;
    top: 55%;
    width: 8px;
    height: 2px;
    border-radius: 9999px;
    background: #fff;
  }

  .ranking-arrow--next::after {
    right: 11px;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
  }

  .ranking-arrow--prev::after {
    left: 11px;
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: left center;
  }

  .rank-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
  }

  .rank-dot {
    width: 36px;
    height: 6px;
    border-radius: 9999px;
    background: #D9E3F7;
    border: 0;
    cursor: pointer;
  }

  .rank-dot.is-active {
    background: #132E7C;
  }
}



.column_inner {
  display: table;
  width: 100%;
}
.main {
  display: table-cell;
  padding-bottom: 50px;
}
.side {
  display: table-cell;
  width: 320px;
  padding-left: 30px;
  vertical-align: top;
}


@media only screen and (max-width: 1000px) {
  .side {
    width: 33%;
    padding-left: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .column {
    padding-bottom: 15%;
    margin-top: 5%;
	}
  .column_head_heading {
    font-size: 18px;
  }
  .column_head_heading.bordernone::after {
    content: none;
  } 
  
  .column_head_heading::after {
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    display: block;
    bottom: 0;
    left: 0;
    background: #5bb53c;
  }
  .column_lead {
    margin-top: 4%;
    font-size: 11px;
  }
  .column_inner {
    display: block;
  }
  .main {
    display: block;
    padding-bottom: 15%;
  }
  .side {
    display: block;
    width: 100%;
    padding-left: 0;
  }
	.column_subhead {
	  width:100%;
	}
	.column_pic {
	  width:100%;
		margin-bottom:15px;
	}
}


/* 中間ブレイクポイント */
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .column_head {
    flex-direction: column;
    gap: 20px;
  }
  .column_head ul {
    gap: 5px;
  }

  .column-columnbar {
    padding: 16px 40px;
  }

  .column_cat_block {
    padding: 32px 40px 40px 40px;
  }
  .column_cat_list {
    grid-template-columns: repeat(3, 230px);
  }
  .cat_item {
    width: 230px;
    padding: 0 16px 0 10px;
  }

  .column-latest .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }
  .column-latest .card {
    width: auto;
  }

  .column-latest .card img {
    height: auto;
    max-height: 330px;
  }
  
  .category-row {
    padding: 80px 60px;
  }

  .column-recommend .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .column-recommend .card {
    width: 85%;
  }

  .category-row--bg {
    padding: 60px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 890) {
  .column-latest .card img {
    height: auto;
    max-height: 270px;
  }
}

@media only screen and (min-width: 690px) and (max-width: 768px) {
  .column-recommend .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .column-recommend .card {
    width: 300px;
  }
  .column_cat_list {
    grid-template-columns: repeat(3, 170px);
  }

}


