@charset "UTF-8";
@property --btn-bgcolor {
  syntax: "<color>";
  inherits: false;
  initial-value: #39567f;
}
@property --btn-hover-bgcolor {
  syntax: "<color>";
  inherits: false;
  initial-value: #94b1cd;
}
@media only screen and (max-width: 999px) {
  .column_index {
    padding-bottom: 32px;
  }
}
.column_content {
  background: #f7f6f6;
  padding: 60px 100px;
  border-radius: 60px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .column_content {
    padding: 40px 20px;
    border-radius: 20px;
  }
}

@media only screen and (min-width: 1000px) {
  .main_flex_area {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .main_column {
    order: 1;
    width: 100%;
    box-sizing: border-box;
    padding-left: 50px;
  }
  .sub_column {
    order: 2;
    width: 180px;
    max-width: 180px;
    flex: 0 0 180px;
    overflow: hidden;
    box-sizing: content-box;
    transform: translateX(-1px);
  }
}
@media only screen and (max-width: 999px) {
  .main_column {
    margin-bottom: 30px;
  }
}

.searchword {
  margin-top: 0 !important;
}

.return_more {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: 18px;
  transition: 0.3s all;
  padding: 1em 0 1em 45px;
  position: relative;
}
.return_more::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: var(--btn-bgcolor) url(../img/common/icon/arrow_more.webp) 50% 50%/contain no-repeat;
  border-radius: 50% 50%;
  width: 30px;
  aspect-ratio: 1/1;
  transition: 0.3s all;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.return_more:hover, .return_more:active {
  color: var(--btn-hover-bgcolor);
}
.return_more:hover::after, .return_more:active::after {
  left: 10px;
}

.category_line > .category_line_inner h1 {
  margin-bottom: 66px;
}
@media only screen and (max-width: 767px) {
  .category_line > .category_line_inner h1 {
    margin-bottom: 32px;
    padding-bottom: 0.4em;
  }
}
.category_line > .category_line_inner > .category_title .sub {
  width: 195px;
  display: block;
  padding: 5px;
  color: #202020;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07em;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .category_line > .category_line_inner > .category_title .sub {
    width: 100%;
    font-size: 20px;
    margin-bottom: 0;
  }
}
.category_line > .category_line_inner > .category_title img {
  width: 820px;
  height: auto;
  transform: translateX(-23px);
}
@media only screen and (max-width: 999px) {
  .category_line > .category_line_inner > .category_title img {
    width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .category_line > .category_line_inner > .category_title img {
    width: 450px;
  }
}
@media only screen and (max-width: 575px) {
  .category_line > .category_line_inner > .category_title img {
    width: 340px;
    transform: translateX(-10px);
  }
}
@media screen and (max-width: 374px) {
  .category_line > .category_line_inner > .category_title img {
    width: 290px;
    transform: translateX(-10px);
  }
}

.column_wrap {
  margin-bottom: 50px;
}
@media only screen and (max-width: 999px) {
  .column_wrap {
    margin-bottom: 20px;
  }
}

.column_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 50px;
  column-gap: 20px;
  row-gap: 30px;
}
@media only screen and (max-width: 999px) {
  .column_list {
    gap: 20px 20px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .column_list {
    grid-template-columns: 1fr;
    gap: 40px 12px;
  }
}
.column_list .card {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 575px) {
  .column_list .card {
    max-width: 390px;
    width: 100%;
    margin: 0 auto;
  }
}
.column_list .card > a {
  width: 100%;
  display: block;
  text-decoration: none;
  background-color: #fff;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0px 10px 20px 0px rgba(46, 55, 74, 0.15);
  font-family: wanpaku-rera, sans-serif;
  transition: 0.3s all;
}
.column_list .card > a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .column_list .card > a {
    padding: 45px 30px 30px;
  }
}
.column_list .thum_area {
  position: relative;
  height: 170px;
}
.column_list .thum_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 20px;
}
@media only screen and (max-width: 575px) {
  .column_list .thum_area img {
    height: 100%;
  }
}
.column_list .thum_area .new {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 80px;
  height: 36px;
  text-align: center;
  color: #fff;
  background-color: #edc286;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  line-height: 34px;
}
@media only screen and (max-width: 999px) {
  .column_list .thum_area .new {
    top: -15px;
    left: -15px;
  }
}
.column_list .thum_area .cate_area {
  height: 50px;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(15, 30, 48, 0.6);
  color: #fff;
  line-height: 1.3;
}
.column_list .thum_area .cate_area .inner span {
  position: absolute;
  top: 16px;
  left: 12px;
  width: 100%;
}
.column_list .explain_area {
  padding-top: 28px;
  box-sizing: border-box;
}
@media only screen and (max-width: 999px) {
  .column_list .explain_area {
    padding-top: 14px;
  }
}
.column_list .explain_area .info_area {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
}
@media only screen and (max-width: 999px) {
  .column_list .explain_area .info_area {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .column_list .explain_area .info_area {
    flex-wrap: wrap;
  }
}
.column_list .explain_area .info_area .date {
  font-size: 16px;
  color: #39567f;
  padding-right: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 999px) {
  .column_list .explain_area .info_area .date {
    font-size: 14px;
  }
}
.column_list .explain_area .title_area {
  font-size: 16px;
  color: #39567f;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/**************************
	詳細ページ
*/
.column_detail .btn {
  text-decoration: none;
}
.column_detail .info_area {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .column_detail .info_area {
    margin-bottom: 10px;
  }
}
.column_detail .info_area .date {
  font-size: 16px;
  color: #39567f;
  padding-right: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 999px) {
  .column_detail .info_area .date {
    font-size: 14px;
  }
}
.column_detail .info_area .new {
  width: 80px;
  height: 36px;
  text-align: center;
  color: #fff;
  background-color: #edc286;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .column_detail .info_area .new {
    top: -45px;
    left: -30px;
  }
}
.column_detail h2.title {
  font-size: 30px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: 26px;
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .column_detail h2.title {
    font-size: 24px;
    line-height: 1.4;
  }
}
.column_detail h2.title::before {
  background: #e7e7e7;
}
.column_detail h2.title::after {
  display: none;
}
.column_detail h3 {
  font-size: 25px;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  border-radius: 10px;
  background-color: #ffffff !important;
}
@media only screen and (max-width: 767px) {
  .column_detail h3 {
    font-size: 24px;
  }
}
.column_detail h3::before {
  background: none;
}
.column_detail h3::after {
  display: none;
}
.column_detail img {
  width: 100%;
  border-radius: 30px;
}
@media only screen and (max-width: 575px) {
  .column_detail img {
    border-radius: 20px;
  }
}

/**************************
	前後の記事
*/
.other_blog {
  border-top: 1px solid #f0f0f0;
}

.other_column_list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  background-size: 4px 4px;
  height: 60px;
  margin-top: 60px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .other_column_list {
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 14px;
    line-height: 1.2;
    margin-top: 20px;
  }
}
.other_column_list .prev {
  position: relative;
}
.other_column_list .prev a:hover .text_inner::before {
  background-color: transparent;
  left: -3%;
}
.other_column_list .prev .text_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  .other_column_list .prev .text_inner {
    flex-direction: column;
    row-gap: 4px;
  }
}
.other_column_list .prev .text_inner::before {
  content: "";
  transition: transform 0.1s ease-in-out;
  background: url("../img/common/icon/pager_arrow_prev.webp") 0 0 no-repeat transparent;
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .other_column_list .prev .text_inner::before {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}
@media only screen and (max-width: 575px) {
  .other_column_list .prev .text_inner::before {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
}
.other_column_list .next {
  position: relative;
}
.other_column_list .next a:hover .text_inner::after {
  background-color: transparent;
  right: -3%;
}
.other_column_list .next .text_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding-right: 40px;
}
@media only screen and (max-width: 767px) {
  .other_column_list .next .text_inner {
    flex-direction: column-reverse;
    row-gap: 4px;
  }
}
.other_column_list .next .text_inner::after {
  content: "";
  transition: transform 0.1s ease-in-out;
  background: url("../img/common/icon/pager_arrow_next.webp") 0 0 no-repeat transparent;
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .other_column_list .next .text_inner::after {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}
@media only screen and (max-width: 575px) {
  .other_column_list .next .text_inner::after {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
}
.other_column_list .list {
  position: relative;
}
.other_column_list .list .text_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}
.other_column_list .list .text_inner::after {
  content: "";
  display: inline-block;
  background: url("../img/common/icon/icon_sikaku.webp") 0 0 no-repeat transparent;
  background-size: 32px 32px;
  width: 32px;
  height: 32px;
  margin-left: 20px;
  margin-top: 0px;
}
@media only screen and (max-width: 767px) {
  .other_column_list .list .text_inner::after {
    margin-left: 6px;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
  }
}
.other_column_list li {
  list-style: none;
}
.other_column_list li a {
  color: #111111;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  height: 100%;
  transition: left, right 0.2s;
  text-decoration: none;
  transition: all 0.3s;
}
.other_column_list li a:hover {
  opacity: 0.8;
}

.column_search_area {
  margin-bottom: 60px;
  margin-top: 10px;
}
@media only screen and (max-width: 999px) {
  .column_search_area {
    width: 100%;
    margin: 0 auto 24px;
  }
}
.column_search_area .column_search {
  position: relative;
  box-sizing: border-box;
}
.column_search_area .column_search input {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  border: unset;
  background-color: #e8e8e8;
  padding: 5px 40px 5px 50px;
  box-sizing: border-box;
  outline: none;
}
@media only screen and (max-width: 575px) {
  .column_search_area .column_search input {
    height: 40px;
  }
}
.column_search_area .column_search input:active {
  outline: none;
}
.column_search_area .column_search .inputBtn {
  width: 36px;
  height: 36px;
  background-color: transparent;
  outline: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: none;
  position: absolute;
  top: 12px;
  left: 17px;
}
@media only screen and (max-width: 575px) {
  .column_search_area .column_search .inputBtn {
    top: 2px;
  }
}
.column_search_area .column_search .inputBtn::-moz-placeholder {
  color: #aaaaaa;
}
.column_search_area .column_search .inputBtn::placeholder {
  color: #aaaaaa;
}
.column_search_area .column_search .inputBtn::after {
  content: "";
  display: inline-block;
  background: url("../img/common/icon/search.webp") 0 0 no-repeat transparent;
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
}

@media only screen and (min-width: 1200px) {
  .sub_content._blog {
    margin-bottom: 60px;
  }
}
.sub_content._blog .column_tab_new-article .article {
  display: block;
  padding-bottom: 12px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  position: relative;
}
.sub_content._blog .column_tab_new-article .article:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #39567f;
  position: absolute;
  bottom: 0;
}
.sub_content._blog .column_tab_new-article .tab {
  font-family: wanpaku-rera, sans-serif;
}
.sub_content._blog .column_tab_new-article .tab .date {
  color: #39567f;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01rem;
}
.sub_content._blog .column_tab_new-article .tab .date.new {
  position: relative;
}
.sub_content._blog .column_tab_new-article .tab .date.new::before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: rgb(237, 194, 134);
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  right: -30px;
  transform: translate(-50%, -50%);
}
.sub_content._blog .column_tab_new-article .tab .title {
  line-height: 24px;
  margin: 0;
  font-size: 16px;
  color: #39567f;
  line-height: 1.5;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media only screen and (max-width: 999px) {
  .sub_content._blog .column_tab_list li .tab {
    padding: 5px 20px;
  }
}
@media screen and (max-width: 374px) {
  .sub_content._blog .column_tab_list li .tab {
    padding: 5px 12px;
  }
}
.sub_content._blog .column_tab_list {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 0;
  margin-top: 0;
}
.sub_content._blog .column_tab_list li {
  list-style: none;
  position: relative;
}
.sub_content._blog .column_tab_list li .tab {
  padding: 26px 10px 27px;
  display: inline-block;
  display: block;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  text-decoration: none;
  border-bottom: 1px solid #e7e7e7;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #202020;
  cursor: pointer;
  transition: 0.3s all;
}
@media only screen and (max-width: 999px) {
  .sub_content._blog .column_tab_list li .tab {
    padding: 20px 0 22px;
  }
}
.sub_content._blog .column_tab_list li .tab:hover {
  background-color: #c7ced8;
}

.column_pager_area {
  padding-top: 50px;
}
@media only screen and (max-width: 999px) {
  .column_pager_area {
    padding-top: 30px;
  }
}

.column_pager {
  text-align: center;
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column_pager__box,
.column_pager a {
  display: block;
  width: 40px;
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .column_pager__box,
  .column_pager a {
    width: 32px;
    height: 32px;
  }
}
@media only screen and (min-width: 1200px) {
  .column_pager__box {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 999px) {
  .column_pager__box {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.column_pager__box:first-child, .column_pager__box:last-child {
  width: 60px;
  height: 60px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .column_pager__box:first-child, .column_pager__box:last-child {
    width: 30px;
    height: 30px;
  }
}
.column_pager__box:first-child a, .column_pager__box:last-child a {
  width: 60px;
  height: 60px;
}
@media only screen and (max-width: 767px) {
  .column_pager__box:first-child a, .column_pager__box:last-child a {
    width: 30px;
    height: 30px;
  }
}
.column_pager__box:first-child {
  margin-right: 65px;
}
@media only screen and (max-width: 767px) {
  .column_pager__box:first-child {
    margin-right: 25px;
  }
}
.column_pager__box:last-child {
  margin-left: 65px;
}
@media only screen and (max-width: 767px) {
  .column_pager__box:last-child {
    margin-left: 25px;
  }
}
.column_pager a {
  font-size: 22px;
  line-height: 50px;
  color: #39567f;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.2s;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .column_pager a {
    font-size: 18px;
    line-height: 34px;
  }
}
.main_content .column_pager a {
  text-decoration: none;
  padding-left: 2px;
}
.main_content .column_pager a .searchword {
  margin-top: 0;
}
.column_pager a.current {
  pointer-events: none;
  color: #ffffff;
  background-color: #94b1cd;
  box-sizing: border-box;
}
.column_pager a:hover {
  background-color: #94b1cd;
  color: #ffffff;
}
.column_pager .next_link,
.column_pager .prev_link {
  background-color: unset;
}
.column_pager .next_link {
  box-shadow: none;
  border: 0 none;
  color: #ffffff;
  position: relative;
}
.column_pager .next_link::before {
  content: "";
  transition: transform 0.1s ease-in-out;
  background: url("../img/common/icon/pager_arrow_next.webp") 0 0 no-repeat transparent;
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  .column_pager .next_link::before {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}
.column_pager .next_link-passive {
  pointer-events: none;
  opacity: 0.5;
  background-color: unset;
}
.column_pager .next_link-passive::before {
  opacity: 0.7;
}
.column_pager .next_link-passive::before:hover::before {
  transform: translateX(3px);
}
.column_pager .next_link:hover {
  background-color: transparent;
  transform: translateX(3px);
}
.column_pager .prev_link {
  box-shadow: none;
  border: 0 none;
  color: #ffffff;
  position: relative;
}
.column_pager .prev_link::before {
  content: "";
  transition: transform 0.1s ease-in-out;
  background: url("../img/common/icon/pager_arrow_prev.webp") no-repeat;
  width: 60px;
  height: 60px;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  .column_pager .prev_link::before {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}
.column_pager .prev_link-passive {
  pointer-events: none;
  opacity: 0.5;
  background-color: unset;
}
.column_pager .prev_link-passive::before {
  opacity: 0.7;
}
.column_pager .prev_link-passive::before:hover::before {
  transform: translateX(3px);
}
.column_pager .prev_link:hover {
  background-color: transparent;
  transform: translateX(-3px);
}
/*# sourceMappingURL=column.css.map */
