@charset "UTF-8";
/*============================================================
  basic setting 
============================================================*/
.red {
  color: #ba272d;
}

.darkgold {
  color: #af9680;
}

body#column {
  font-weight: 400 !important;
}

body#column #pagehead {
  display: flex !important;
  align-items: center;
  justify-self: center;
  background-image: url(../img/common/header/column.webp) !important;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 480px) {
  body#column #pagehead {
    background-position: center bottom 30%;
    background-repeat: no-repeat;
    height: 130px;
    min-height: auto;
  }
}
body#column #pagehead .inner {
  text-align: center;
  z-index: 2;
}
body#column #pagehead .title-en {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  body#column #pagehead .title-en {
    font-size: 1.4rem;
  }
}
body#column #pagehead .title-jp {
  font-size: 5rem;
  color: #fff;
}
@media screen and (max-width: 480px) {
  body#column #pagehead .title-jp {
    font-size: 2rem;
  }
}
body#column #pagehead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* 記事背景周り */
body#column #breadcrumb {
  padding: 2em 0;
  background-color: #eceded;
}
@media screen and (max-width: 480px) {
  body#column #breadcrumb {
    padding: 2em 0 1em 0;
  }
}
body#column .breadcrumb-list, body#column #breadcrumb ul, body#column .inner > .breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: 10px;
  scrollbar-width: none;
}
body#column .breadcrumb-list::-webkit-scrollbar {
  display: none;
}
body#column .breadcrumb-list li {
  flex-shrink: 0;
  font-size: 1.4rem;
}
body#column .sec01 {
  background-color: #eceded;
  padding-bottom: 8em;
}
body#column .sec01 .inner {
  background-color: #ffffff;
  padding: 80px 40px;
  border-radius: 8px;
}
@media screen and (max-width: 480px) {
  body#column .sec01 .inner {
    padding: 32px 20px;
  }
}
body#column .sec01 .inner .box01 {
  max-width: 760px;
  margin: 0 auto;
}

/* アイキャッチ画像 */
body#column .column-eye-catch {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 50px;
  text-align: center;
}
body#column .column-eye-catch img {
  width: 100%;
  max-width: 760px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* 記事装飾 */
body#column h1.column-title {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 480px) {
  body#column h1.column-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
}
body#column .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  body#column .info {
    margin-bottom: 24px;
  }
}
body#column .info-date {
  color: #888;
  font-size: 1.6rem;
  order: 2;
}
body#column .info-date time {
  font-size: 2rem;
  font-family: "alternate-gothic-atf", sans-serif;
}
body#column .info-categories {
  order: 1;
  background: #af9680;
  font-size: 1.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 5px 20px;
}
@media screen and (max-width: 480px) {
  body#column .info-categories {
    padding: 3px 10px;
  }
}
body#column .entry-content strong {
  font-weight: bold;
}
body#column .entry-content h2 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0.8em;
  background-color: #414042;
  margin-top: 64px;
  margin-bottom: 30px;
  color: #ffffff;
  position: relative;
}
@media screen and (max-width: 480px) {
  body#column .entry-content h2 {
    font-size: 1.8rem !important;
  }
}
body#column .entry-content h2::after {
  content: "";
  background-color: #414042;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -6px;
  left: 0;
}
body#column .entry-content h3 {
  font-size: 2.2rem;
  font-weight: 600;
  padding: 0.5em 0.7em !important;
  border-bottom: none !important;
  border-left: #c0ac81 5px solid;
  margin-top: 48px;
  margin-bottom: 24px;
  background-color: #f8f6f2;
}
@media screen and (max-width: 480px) {
  body#column .entry-content h3 {
    font-size: 1.8rem;
  }
}
body#column .entry-content h4 {
  font-size: 1.9rem;
  font-weight: 600;
  padding: 5px 0 5px 15px;
  border-left: #414042 10px solid;
  margin-top: 48px;
  margin-bottom: 24px;
  color: #414042;
}
@media screen and (max-width: 480px) {
  body#column .entry-content h4 {
    font-size: 1.8rem;
  }
}
body#column p {
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  body#column p {
    font-size: 1.6rem;
  }
}
body#column p a, body#column p a:link, body#column p a:visited, body#column p a:hover, body#column p a:active {
  color: #067dc0 !important;
  text-decoration: underline;
}
body#column blockquote {
  position: relative;
  padding: 30px 25px 25px 60px !important;
  margin: 40px 0 !important;
  background: #f8f8f8;
  border-left: none !important;
  border-radius: 8px;
  color: #555;
  font-style: normal;
}
body#column blockquote p:last-child {
  margin-bottom: 0;
}
body#column .entry-content blockquote::before {
  content: "“";
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 80px;
  line-height: 1;
  color: #c0ac81;
  font-family: serif;
  opacity: 0.3;
}
body#column .entry-content blockquote cite {
  display: block;
  text-align: right;
  margin-top: 15px;
  font-size: 0.9em;
  color: #888;
}
body#column .entry-content blockquote cite::before {
  content: "出典：";
}
body#column .btn01 a {
  text-align: center;
  margin: 0 auto;
}
body#column .entry-content ul:not(#toc_container ul):not(.toc_list),
body#column .entry-content ol:not(#toc_container ol):not(.toc_list) {
  margin: 30px 0 0 0;
  padding: 0;
}
body#column .entry-content ul:not(#toc_container ul):not(.toc_list) {
  margin: 30px 0;
  padding: 24px;
  background-color: #F4F4F4;
  list-style-type: none;
}
@media screen and (max-width: 480px) {
  body#column .entry-content ul:not(#toc_container ul):not(.toc_list) {
    margin: 20px 0;
    padding: 15px;
  }
}
body#column .entry-content ul:not(#toc_container ul):not(.toc_list) li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  body#column .entry-content ul:not(#toc_container ul):not(.toc_list) li {
    padding-left: 18px;
    font-size: 1.6rem;
  }
}
body#column .entry-content ul:not(#toc_container ul):not(.toc_list) li:last-child {
  margin-bottom: 0;
}
body#column .entry-content ul:not(#toc_container ul):not(.toc_list) li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #414042;
  font-size: 0.6em;
  top: 8px;
}
@media screen and (max-width: 480px) {
  body#column .entry-content ul:not(#toc_container ul):not(.toc_list) li::before {
    top: 5px;
  }
}
body#column .entry-content ol:not(#toc_container ol):not(.toc_list) {
  counter-reset: my-counter;
  margin: 30px 0;
  padding: 20px 20px 20px 25px; /* 数字の分だけ左を空ける */
  background-color: #F4F4F4;
}
@media screen and (max-width: 480px) {
  body#column .entry-content ol:not(#toc_container ol):not(.toc_list) {
    padding: 15px;
  }
}
body#column .entry-content ol:not(#toc_container ol):not(.toc_list) li {
  position: relative;
  list-style: none;
  margin-bottom: 5px;
  padding: 8px 0 8px 35px;
  line-height: 1.6;
  counter-increment: my-counter;
}
@media screen and (max-width: 480px) {
  body#column .entry-content ol:not(#toc_container ol):not(.toc_list) li {
    padding-left: 30px;
    font-size: 1.6rem;
  }
}
body#column .entry-content ol:not(#toc_container ol):not(.toc_list) li:last-child {
  margin-bottom: 0;
}
body#column .entry-content ol:not(#toc_container ol):not(.toc_list) li::before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background-color: #414042;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  font-feature-settings: "palt";
  padding-left: 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  body#column .entry-content ol:not(#toc_container ol):not(.toc_list) li::before {
    width: 22px;
    height: 22px;
    font-size: 1.3rem;
    padding-bottom: 1px;
    line-height: 1;
  }
}

/* 目次 */
#toc_container {
  background-color: #f8f6f2 !important;
  border: #c0ac81 1px solid !important;
  padding: 25px !important;
  margin-bottom: 40px !important;
  border-radius: 5px;
  width: 100% !important;
}
@media screen and (max-width: 480px) {
  #toc_container {
    padding: 15px !important;
  }
}
#toc_container .toc_title {
  font-size: 1.8rem !important;
  font-weight: bold !important;
  color: #333 !important;
  text-align: center;
  display: block;
  margin-bottom: 24px !important;
  border-bottom: #c0ac81 1px dotted;
  padding-bottom: 10px;
}
#toc_container ul {
  list-style: none !important;
  padding-left: 0 !important;
}
#toc_container ul li {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
  color: #af9680;
  margin-bottom: 10px !important;
  position: relative;
  text-indent: -16px;
  margin-left: 32px;
  padding-right: 24px;
}
@media screen and (max-width: 480px) {
  #toc_container ul li {
    font-size: 1.6rem;
    padding-right: 10px;
  }
}
#toc_container ul li a {
  text-decoration: none !important;
  color: #333 !important;
  transition: 0.3s;
  display: inline-block;
}
#toc_container ul li a:hover {
  color: #af9680 !important;
  text-decoration: underline !important;
}
#toc_container ul ul {
  margin-top: 10px !important;
  padding-left: 0 !important;
  display: none;
}
@media screen and (max-width: 480px) {
  #toc_container ul ul {
    padding-left: 0 !important;
  }
}
#toc_container ul ul li {
  font-size: 1.5rem;
  font-weight: 400;
  color: #414042 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}
#toc_container .toc_toggle_btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.8rem;
  color: #c0ac81;
  border-radius: 3px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  #toc_container .toc_toggle_btn {
    justify-content: flex-end;
  }
}
#toc_container .toc_toggle_btn.is-active::before {
  content: "−";
}
#toc_container .toc_toggle_btn::before {
  content: "＋";
}

/* 監修者情報エリア */
.section-supervisor {
  margin: 60px auto 40px;
  padding: 40px;
  background: #f8f6f2;
  border: 1px solid #e2d8c0;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .section-supervisor {
    padding: 30px 20px;
    margin-top: 40px;
  }
}
.section-supervisor__wrap {
  position: absolute;
  top: -15px;
  left: -10px;
}
.section-supervisor__wrap-title {
  background-color: #414042;
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  display: inline-block;
  padding: 8px 20px;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .section-supervisor__wrap-title {
    font-size: 1.6rem;
  }
}
.section-supervisor__wrap-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 0;
  border-color: transparent #1a1a1a transparent transparent;
  z-index: 1;
}
.section-supervisor__contents {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  .section-supervisor__contents {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.section-supervisor__contents-picture {
  flex: 0 0 200px;
}
@media screen and (max-width: 480px) {
  .section-supervisor__contents-picture {
    flex: 0 0 120px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.section-supervisor__contents-picture img {
  width: 100%;
  height: auto;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .section-supervisor__contents-picture img {
    width: 90%;
  }
}
.section-supervisor__contents-profile {
  flex: 1;
}
.section-supervisor__contents-profile .name {
  font-size: 2.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 480px) {
  .section-supervisor__contents-profile .name {
    justify-content: center;
    font-size: 2rem;
    text-align: center;
  }
}
.section-supervisor__contents .shikaku {
  font-size: 1.5rem;
  font-weight: normal;
  font-feature-settings: "palt";
  line-height: 1;
  background: #af9680;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .section-supervisor__contents .shikaku {
    width: 100%;
    display: block;
    margin-top: 5px;
    line-height: 1.2;
  }
}
.section-supervisor__contents .profile-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #444;
}
@media screen and (max-width: 480px) {
  .section-supervisor__contents .profile-text {
    font-size: 1.4rem;
    text-align: justify;
  }
}
.section-supervisor__contents .profile-text p {
  margin-bottom: 1.2em !important;
}
.section-supervisor__contents .profile-text p:last-child {
  margin-bottom: 0 !important;
}
.section-supervisor__contents a {
  color: #067dc0;
}

body#column #footer {
  margin-top: 0;
}

/* カテゴリーブロック */
#column-archive, #column-taxonomy {
  background-color: #eceded;
  padding-top: 20px;
  padding-bottom: 60px;
}
@media screen and (max-width: 480px) {
  #column-archive, #column-taxonomy {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

.column-cat-block {
  padding: 0 0 60px 0;
}
@media screen and (max-width: 480px) {
  .column-cat-block {
    padding: 0 0 40px 0;
  }
}

.cat-title {
  font-size: 3rem;
  font-weight: bold;
  border-left: #c0ac81 8px solid;
  padding-left: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .cat-title {
    font-size: 2.2rem;
    padding-left: 10px;
    margin-bottom: 20px;
  }
}

.column-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .column-list {
    flex-direction: column;
  }
}

.column-item {
  height: auto;
  width: calc((100% - 60px) / 4);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: #fff;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #eee;
}
@media screen and (max-width: 480px) {
  .column-item {
    width: 100%;
  }
}
.column-item .column-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .column-item .column-link {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
}
.column-item .img-box {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .column-item .img-box {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }
}
.column-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.column-item a:hover img {
  transform: scale(1.1);
}
.column-item .content-box {
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .column-item .content-box {
    flex: 1;
  }
}
.column-item .content-box p {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 480px) {
  .column-item .content-box {
    padding: 10px;
  }
}
.column-item .content-box .date {
  font-size: 2rem;
  color: #888;
  font-family: "alternate-gothic-atf", sans-serif;
}
@media screen and (max-width: 480px) {
  .column-item .content-box .date {
    font-size: 1.8rem;
  }
}
.column-item .content-box .title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .column-item .content-box .title {
    font-size: 1.5rem;
    font-feature-settings: "palt";
  }
}

.cat-description {
  font-size: 1.8rem;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .cat-description {
    font-size: 1.6rem;
    padding: 15px;
    margin-bottom: 40px;
  }
}
.cat-description p:last-child {
  margin-bottom: 0 !important;
}

.btn-more {
  text-align: right;
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  .btn-more {
    font-size: 1.6rem;
  }
}
.btn-more a {
  font-weight: bold;
  color: #414042;
  text-decoration: none;
  position: relative;
  padding-right: 20px;
}
.btn-more a:hover {
  color: #af9680;
}
.btn-more a::after {
  content: "≫";
  position: absolute;
  right: 0;
  margin-right: -5px;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin-top: 50px;
}
.pagination .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 5px;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}
.pagination .page-numbers.current {
  background: #c0ac81;
  border-color: #c0ac81;
  color: #fff;
}
.pagination .page-numbers:hover:not(.current) {
  background: #f5f5f5;
}

/* topページのコラムブロック */
.sec-top-column {
  background-color: #f4f1ed;
}
.sec-top-column .mw1160 {
  max-width: 1240px;
}
.sec-top-column .mw1160 .column-swiper-container {
  position: relative;
  padding: 0 50px 50px;
}
@media screen and (max-width: 480px) {
  .sec-top-column .mw1160 .column-swiper-container {
    padding: 0 0 50px 0;
  }
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper {
  overflow: hidden;
  padding-bottom: 20px;
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .swiper-slide a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-bottom: #c0ac81 3px solid;
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .column-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .column-item a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .sec-top-column .mw1160 .column-swiper-container .column-swiper .column-item .img-box {
    width: 100% !important;
  }
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .content-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .content-box .title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 4.5em;
}
@media screen and (max-width: 480px) {
  .sec-top-column .mw1160 .column-swiper-container .column-swiper .content-box .title {
    font-size: 1.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    min-height: 6em;
  }
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .content-box .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .sec-top-column .mw1160 .column-swiper-container .column-swiper .content-box .meta {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
  }
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .content-box .meta .date {
  font-size: 2.2rem;
}
@media screen and (max-width: 480px) {
  .sec-top-column .mw1160 .column-swiper-container .column-swiper .content-box .meta .date {
    font-size: 2rem;
  }
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper .content-box .meta .cat {
  font-size: 1.5rem;
  line-height: 1.3;
  background-color: #eceded;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.sec-top-column .mw1160 .column-swiper-container .column-swiper-pagination {
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  line-height: 1;
  z-index: 10;
}
.sec-top-column .mw1160 .column-swiper-container .swiper-button-prev, .sec-top-column .mw1160 .column-swiper-container .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(212, 180, 124, 0.5);
  border-radius: 50%;
  transition: all 0.3s;
  top: 40%;
}
@media screen and (max-width: 480px) {
  .sec-top-column .mw1160 .column-swiper-container .swiper-button-prev, .sec-top-column .mw1160 .column-swiper-container .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.sec-top-column .mw1160 .column-swiper-container .swiper-button-prev::before, .sec-top-column .mw1160 .column-swiper-container .swiper-button-next::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #c0ac81;
  border-right: 2px solid #c0ac81;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
}
.sec-top-column .mw1160 .column-swiper-container .swiper-button-prev::after, .sec-top-column .mw1160 .column-swiper-container .swiper-button-next::after {
  display: none !important;
}
.sec-top-column .mw1160 .column-swiper-container .swiper-button-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.sec-top-column .mw1160 .column-swiper-container .swiper-button-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}
.sec-top-column .mw1160 .column-swiper-container .swiper-button-prev:hover, .sec-top-column .mw1160 .column-swiper-container .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: #c0ac81;
}
.sec-top-column .mw1160 .btn01 a {
  text-align: center;
  margin: 30px auto 10px auto;
}

/* ドットナビゲーションの位置、swiper.cssに上書き */
.column-swiper-pagination.swiper-pagination-horizontal,
.swiper-horizontal > .column-swiper-pagination.swiper-pagination-bullets {
  text-align: center !important;
  left: 0 !important;
  width: 100% !important;
  transform: none !important;
}

.column-swiper-pagination .swiper-pagination-bullet {
  display: inline-block !important;
  margin: 0 4px !important;
}

/* コラムのカテゴリーメニュー */
.column-category-menu {
  display: none;
  margin: 10px 0 30px 0;
}
@media screen and (max-width: 480px) {
  .column-category-menu {
    display: block;
  }
}
.column-category-menu .menu-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #414042;
}
.column-category-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.column-category-menu ul li {
  width: calc(50% - 5px);
}
.column-category-menu ul li a {
  display: block;
  background: #fff;
  border: #c0ac81 1px solid;
  color: #414042;
  text-align: left;
  padding: 10px 15px;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  position: relative;
}
.column-category-menu ul li a:active {
  background: #c0ac81;
  color: #fff;
}
.column-category-menu ul li a::after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #414042;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* テーブル */
.scroll-hint {
  overflow-x: auto;
  position: relative;
}

.scroll-hint-icon {
  background-color: rgba(212, 180, 124, 0.9) !important;
}

.wp-block-flexible-table-block-table {
  display: block;
  width: 100%;
  margin: 40px 0;
  overflow: visible !important;
}
@media screen and (max-width: 480px) {
  .wp-block-flexible-table-block-table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    position: relative;
  }
}
.wp-block-flexible-table-block-table table {
  border-collapse: collapse;
  width: 100% !important;
  table-layout: fixed;
  border: #ddd 1px solid !important;
}
@media screen and (max-width: 480px) {
  .wp-block-flexible-table-block-table table {
    width: auto !important;
    min-width: 650px !important;
    table-layout: auto !important;
    font-size: 1.6rem !important;
  }
}
.wp-block-flexible-table-block-table table th, .wp-block-flexible-table-block-table table td {
  white-space: normal !important;
  word-break: break-all;
  padding: 15px 10px;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .wp-block-flexible-table-block-table table th, .wp-block-flexible-table-block-table table td {
    white-space: nowrap;
  }
}
.wp-block-flexible-table-block-table table th {
  background-color: #c0ac81;
  font-weight: 500;
  text-align: center;
  border: #bbb 1px solid !important;
}
.wp-block-flexible-table-block-table table td {
  border: #bbb 1px solid !important;
  background-color: #fff;
}

/* --- ゴールド (c-21-gold) --- */
.entry-content mark.has-c-21-gold-color,
.entry-content .has-inline-color.has-c-21-gold-color,
.has-c-21-gold-color {
  color: #e0d1a4 !important; /* functions.phpの値に合わせました */
  background-color: transparent !important;
}

.entry-content mark.has-c-21-gold-background-color {
  background-color: #e0d1a4 !important;
  color: #fff !important;
}

/* --- レッド (c-21-red) --- */
.entry-content mark.has-c-21-red-color,
.entry-content .has-inline-color.has-c-21-red-color,
.has-c-21-red-color {
  color: #ba272d !important;
  background-color: transparent !important;
}

.entry-content mark.has-c-21-red-background-color {
  background-color: #ba272d !important;
  color: #fff !important;
}

/* --- オレンジ (c-21-orange) --- */
.entry-content mark.has-c-21-orange-color,
.entry-content .has-inline-color.has-c-21-orange-color,
.has-c-21-orange-color {
  color: #ffcc33 !important;
  background-color: transparent !important;
}

.entry-content mark.has-c-21-orange-background-color {
  background-color: #ffcc33 !important;
  color: #fff !important;
}

/* --- ベージュ (c-21-beige) --- */
.entry-content mark.has-c-21-beige-color,
.entry-content .has-inline-color.has-c-21-beige-color,
.has-c-21-beige-color {
  color: #f8f6f2 !important;
  background-color: transparent !important;
}

.entry-content mark.has-c-21-beige-background-color {
  background-color: #f8f6f2 !important;
  color: inherit !important;
}

/* 関連記事ボックス　*/
.related-articles {
  margin: 56px 0;
}

.related-articles__container {
  border: #c0ac81 1px solid;
  position: relative;
  padding: 1em;
}

.related-articles__container p:last-child {
  margin-bottom: 0 !important;
}

.related-articles__container a {
  text-decoration: underline;
  color: #067dc0;
}

.related-articles__container::before {
  content: "関連記事";
  position: absolute;
  top: -34px;
  left: -1px;
  display: block;
  width: 110px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: #c0ac81;
  border-radius: 5px 5px 0 0;
}

@media screen and (max-width: 480px) {
  .related-articles__container::before {
    font-size: 16px;
  }
}
/* CTA　*/
.cta-column {
  width: 100%;
  height: auto;
  padding: 30px;
  background: #eceded url(../img/common/logo-cta.webp) right top no-repeat;
  background-size: 120px auto;
  position: relative;
}
@media screen and (max-width: 480px) {
  .cta-column {
    background-size: 80px auto;
    padding: 15px;
  }
}
.cta-column__title {
  color: #414042;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 480px) {
  .cta-column__title {
    font-size: 2rem;
    line-height: 1.5;
    margin-left: 30px;
  }
}
.cta-column__title strong {
  color: #ba272d;
}
.cta-column__contents {
  padding: 30px 200px 30px 30px;
  position: relative;
  background-color: #ffffff;
  min-height: 220px;
}
@media screen and (max-width: 480px) {
  .cta-column__contents {
    padding: 15px 10px 20px 10px;
  }
}
.cta-column__subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #414042;
  width: 100%;
  height: 36px;
  border-radius: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .cta-column__subtitle {
    font-size: 1.6rem;
    font-feature-settings: "palt";
    border-radius: 18px;
    margin-bottom: 20px;
  }
}
.cta-column__tel {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 20px auto;
  width: calc(100% - 100px);
}
@media screen and (max-width: 480px) {
  .cta-column__tel {
    margin: 10px 0;
    width: 100%;
  }
}
.cta-column__tel p {
  margin: 5px auto !important;
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 480px) {
  .cta-column__tel p {
    width: 100%;
    margin: 5px 0 5px 0 !important;
    line-height: 1.5;
    font-size: 1.5rem;
  }
}
.cta-column__tel img {
  width: 36px;
  height: auto;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .cta-column__tel img {
    width: 26px;
    margin-right: 5px;
  }
}
.cta-column__tel .tel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #414042;
  font-family: "alternate-gothic-atf", sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 480px) {
  .cta-column__tel .tel {
    font-size: 3.6rem;
    padding: 10px 10px 5px 5px;
    border: #c0ac81 1px solid;
    border-radius: 0.3em;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .cta-column__tel .tel::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #A28D5B;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
  }
}
.cta-column__photo {
  position: absolute;
  right: 50px;
  bottom: 30px;
}
@media screen and (max-width: 480px) {
  .cta-column__photo {
    right: auto;
    top: -20px;
    left: 0px;
  }
}
.cta-column__photo img {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 480px) {
  .cta-column__photo img {
    width: 80px;
    height: 110px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
@media screen and (max-width: 480px) {
  .cta-column__btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.cta-column__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 45px;
  padding: 5px;
  margin: 0 auto;
  border-radius: 0.5em;
  position: relative;
  background-color: #ba272d;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .cta-column__btn a {
    font-size: 1.7rem;
    width: 100%;
    padding-right: 15px;
    justify-content: center;
  }
}
.cta-column__btn a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/common/icon-arrow01.svg) center/cover no-repeat;
  position: absolute;
  top: 29%;
  right: 0;
  transform: rotate(-90deg) translateY(-50%);
}
.cta-column__btn a img {
  width: 30px;
  height: auto;
  margin-right: 10px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(20%) hue-rotate(68deg) brightness(107%) contrast(107%);
}
@media screen and (max-width: 480px) {
  .cta-column__btn a img {
    width: 20px;
    margin-right: 5px;
  }
}

/* テーブル　*/
.wp-block-flexible-table-block-table table th {
  text-align: center !important;
}/*# sourceMappingURL=column.css.map */