@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
   ==================================== */
.detail-wrap {
  display: flex;
  width: 100%;
}
.col-main {
  width: 64%;
}
.col-sub {
  width: 26%;
  padding-left: 10%;
  flex: 1;
}

.col-main .article-title-area {
  display: block;
  width: 100%;
  border-bottom: 1px solid #000;
}
.col-main .article-title-area .title-head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  line-height: 1;
}
.col-main .article-title-area .title-head .c-category {
  display: inline;
  color: #eb6877;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.col-main .article-title-area .title-head .c-date {
  display: inline;
  font-size: 16px;
  margin-left: 23px;
  padding-left: 23px;
  line-height: 1;
  border-left: 2px solid #ccc;
}
.col-main .article-title-area .c-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

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;
    margin: 0 auto;
}

.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) {
  .detail-wrap {
    display: block;
    width: 100%;
  }
  .col-main {
    width: 100%;
    margin-bottom: 30px;
  }
  .col-sub {
    width: 100%;
    padding-left: 0;
  }
  .col-main .article-title-area {
    display: block;
    width: 100%;
    border-bottom: 1px solid #000;
  }
  .col-main .article-title-area .title-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    line-height: 1;
  }
  .col-main .article-title-area .title-head .c-category {
    display: inline;
    color: #eb6877;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
  }
  .col-main .article-title-area .title-head .c-date {
    display: inline;
    font-size: 16px;
    margin-left: 23px;
    padding-left: 23px;
    line-height: 1;
    border-left: 2px solid #ccc;
  }
  .col-main .article-title-area .c-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
  }
  column__btn-area {
      margin-top: 120px;
      display: flex;
      justify-content: center;
  }
  .btn-column {
    max-width: 100%;
    height: 60px;
    font-size: 16px;
  }
}

.classifying-box {
  border-top: 2px solid #000;
}
.classifying-box .box-title {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  padding: 30px 0;
  letter-spacing: 0.05em;
}
.classifying-box .box-list {
}
.classifying-box .box-list ul {
}
.classifying-box .box-list ul li {
  margin-bottom: 15px;
}
.classifying-box .box-list ul li a {
  display: table;
  font-size: 17px;
  font-weight: 500;
  color: #008fcc;
  text-decoration: underline;
  line-height: 1.1;
  letter-spacing: 0.05em;
}