@charset "UTF-8";
/* ====================================
   Column Page Sections
   ==================================== */

/* ==========================================================================
   Base & Common Settings (Service Page Specific)
   ========================================================================== */
main {
  padding-top: 225px;
}

.section-padding {
  padding-top: 0;
  padding-bottom: 180px;
}

@media (max-width: 768px) {
  main {
    padding-top: 100px;
  }
  .section-padding {
    padding-bottom: 80px;
  }
}

/* ==========================================================================
   Page Header (Title)
   ========================================================================== */
.page-header {
  padding-bottom: 130px;
  background-color: #fff;
}
.page-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: none;
  padding-bottom: 0;
}

.page-title {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: #333;
}
.page-title .ja {
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  font-size: 24px;
  color: #008fcc;
  margin-top: 25px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.breadcrumbs {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-left: 40px;
  margin-bottom: 10px;
}
.breadcrumbs a {
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
  font-weight: 700;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
.breadcrumbs .current {
  color: #333;
}
.breadcrumbs span:not(.current) {
  font-size: 0;
  display: inline-block;
  width: 75px;
  height: 1px;
  background-color: #000;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .page-header {
    padding-bottom: 50px;
  }

  .page-header__inner {
    flex-direction: column;
    align-items: flex-start; 
    gap: 20px;
  }
  
  .page-title {
    font-size: 60px;
  }
  
  .breadcrumbs {
    margin-left: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  
  .breadcrumbs span:not(.current) {
    width: 30px;
    margin: 0 10px;
  }
}


/* ====================================
   Column Page Styles
   ==================================== */

/* ------------------------------------
   Category Navigation
   ------------------------------------ */
.column-category-nav {
}

.column-category-nav .container {
  background-color: #eaf8ff;
  padding: 50px 60px;
  border-radius: 4px;
  display: flex;
  align-items: stretch;
}

.cat-label {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  padding-right: 50px;
  margin-right: 70px;
  border-right: 1px solid #000;
  line-height: 1;
  white-space: nowrap;
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: center; 
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  align-content: center;
}

.cat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 25px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
  box-sizing: border-box;
}

.cat-btn:hover,
.cat-btn.active {
  background-color: #000;
  color: #fff;
}

.noitems {
  width: 100%;
  display: table;
  font-size: 17px;
  text-align: center;
  margin: 0 auto;
  padding: 0 0 50px;
}

/* ------------------------------------
   Responsive (max-width: 768px)
   ------------------------------------ */
@media (max-width: 768px) {
  .column-category-nav .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }

  .cat-label {
    border-right: none;
    border-bottom: 1px solid #000;
    padding-right: 0;
    padding-bottom: 15px;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
    font-size: 32px;
    display: block; 
  }

  .cat-list {
    gap: 10px;
  }

  .cat-btn {
    font-size: 14px;
    height: 40px;
    padding: 0 15px;
  }
}


/* ------------------------------------
   Column
   ------------------------------------ */
.column__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.column {
    background-color: #f0fafd;
    padding-top: 80px;
    padding-bottom: 180px;
}
.column .section-title {
    font-size: 80px;
}
.column .section-title .ja {
    font-size: 20px;
    margin-top: 15px;
}
@media (max-width: 768px) {
    .column .section-title {
        font-size: 50px;
    }
    .column .section-title .ja {
        font-size: 14px;
    }
}

.column__list {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}

.column__item {
    width: calc((100% - 140px) / 3);
}

.column__item a {
    text-decoration: none;
    display: block;}

.column__img {
    width: 100%;
    aspect-ratio: 400 / 267;
    overflow: hidden;
    margin-bottom: 20px;
}
.column__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.column__item a:hover .column__img img {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .column__list {
        gap: 30px;
        flex-direction: column;
    }
    .column__item {
        width: 100%;
    }
    .column__img {
        width: 100%;
        height: auto;
        aspect-ratio: 400 / 267;
    }
}

.column__meta {
    display: block;
    font-size: 16px;
    color: #eb6877;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}
.column__head {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.column__body {
    transition: color 0.3s;
}
.column__item a:hover .column__head {
    color: #008fcc;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.column__item.fade-in {
  animation: fadeInSlide 0.8s ease forwards;
}

@media (max-width: 768px) {
    .column__grid { grid-template-columns: 1fr; }
}

.column__btn-area {
    margin-top: 120px;
    display: flex;
    justify-content: center;
}

.btn-column {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
    max-width: 470px;
    height: 70px;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-column .icon-arrow-circle {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
    border: 1px solid #333;
    border-radius: 50%;
    margin-left: 20px;
    transition: border-color 0.3s ease;
}

.btn-column .icon-arrow-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 1px;
    background-color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-column .icon-arrow-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 4px - 0.5px), -0.5px) rotate(45deg);
    transform-origin: right bottom;
    width: 6px;
    height: 1px;
    background-color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-column:hover {
    background-color: #333;
    color: #fff;
}

.btn-column:hover .icon-arrow-circle {
    border-color: #fff;
    transform: none;
}

.btn-column:hover .icon-arrow-circle::before {
    background-color: #fff;
    transform: translate(calc(-50% + 3px), -50%); 
}

.btn-column:hover .icon-arrow-circle::after {
    background-color: #fff;
    transform: translate(calc(-50% + 4px - 0.5px + 3px), -0.5px) rotate(45deg);
}

@media (max-width: 768px) {
    .btn-column {
        max-width: 100%;
        height: 60px;
        font-size: 16px;
    }
}