@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * vw(数値,幅)の計算
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-size: 10px;
}
@media (max-width: 775px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Lucida Grande", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  color: #1C1C1D;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

video,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

.header {
  font-size: 13px;
}

.header img {
  width: auto;
}

.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popMenu_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 749px) {
  .drawer-hamburger {
    width: 32px;
    padding-right: 12px;
    padding-left: 12px;
  }
}
.footer {
  font-size: 13px;
}

.footer img {
  width: auto;
}

.footer a {
  cursor: pointer;
}
.footer .sns,
.footer .sm_ft_sns-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .ft_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.l-article-inner {
  margin-inline: auto;
  padding-inline: 25px;
  max-width: 775px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-article-inner {
    max-width: 500px;
    padding-inline: 1.6rem;
  }
}

.c-page-header {
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .c-page-header {
    margin-bottom: 6rem;
  }
}

.c-page-header__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  font-weight: 400;
  color: #222222;
}

.c-page-header__title-en {
  font-family: "Noto Serif JP", serif;
  font-size: 5.4rem;
  line-height: 1;
}

.c-page-header__title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* ------------------------------------------------
button
--------------------------------------------------- */
.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
.c-button:hover .c-button__icon {
  -webkit-transform: translateX(-0.4rem);
          transform: translateX(-0.4rem);
}

.c-button__icon {
  width: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-button__icon svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.c-button__icon path {
  stroke: #444444;
}

.c-button__text {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  color: #444444;
}

.c-breadcrumb {
  padding-block: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-breadcrumb a {
  color: #666666;
}
.c-breadcrumb .breadcrumb__between {
  color: #666666;
}

/* スクロールフェードアニメーション */
.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  -webkit-transition: opacity 0.55s ease, -webkit-transform 0.55s ease;
  transition: opacity 0.55s ease, -webkit-transform 0.55s ease;
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition: opacity 0.55s ease, transform 0.55s ease, -webkit-transform 0.55s ease;
}

.js-fadeIn.in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ------------------------------------------------
article
--------------------------------------------------- */
.c-article-section {
  padding-block: 12.7rem 12rem;
}
@media screen and (max-width: 767px) {
  .c-article-section {
    padding-block: 15rem 12rem;
  }
}
.c-article-section a:hover {
  text-decoration: none;
}

.c-article-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #444444;
}
.c-article-body h2 {
  margin-block: 40px 16px;
  padding: 8px 12px;
  width: 100%;
  border-left: 2px solid #EB789D;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #EB789D;
}
.c-article-body h3 {
  margin-block: 16px 16px;
  padding: 4px 0;
  width: 100%;
  border-bottom: 1px solid #EB789D;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #444444;
}
.c-article-body p {
  margin-block: 16px;
}
.c-article-body a,
.c-article-body a:link {
  color: #007ebe;
}
.c-article-body a:hover {
  color: #e53900;
}
.c-article-body figure {
  margin-block: 16px;
}
.c-article-body ul {
  margin-block: 16px;
}
.c-article-body ul li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.c-article-body ul li::before {
  content: "・";
  margin-right: 0.25em;
}
.c-article-body ol {
  margin-block: 16px;
  counter-reset: listnum;
}
.c-article-body ol li {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.c-article-body ol li::before {
  counter-increment: listnum;
  content: counter(listnum) ".";
  margin-right: 0.4em;
}
.c-article-body .wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #5B5B5B;
  border-radius: 4px;
  overflow: hidden;
}
.c-article-body .wp-block-table thead {
  border-bottom: 1px solid;
}
.c-article-body .wp-block-table th,
.c-article-body .wp-block-table td {
  border: none;
  border-right: 1px solid #5B5B5B;
  border-bottom: 1px solid #5B5B5B;
}
.c-article-body {
  /* 最右列 */
}
.c-article-body .wp-block-table tr th:last-child,
.c-article-body .wp-block-table tr td:last-child {
  border-right: none;
}
.c-article-body {
  /* 最下行 */
}
.c-article-body .wp-block-table tbody tr:last-child th,
.c-article-body .wp-block-table tbody tr:last-child td {
  border-bottom: none;
}
.c-article-body .wp-block-table tbody:not(:last-child) tr:last-child th,
.c-article-body .wp-block-table tbody:not(:last-child) tr:last-child td {
  border-bottom: 1px solid #5B5B5B;
}
.c-article-body .wp-block-table tfoot th,
.c-article-body .wp-block-table tfoot td {
  border-bottom: none;
}
.c-article-body .wp-block-table th {
  font-weight: 400;
  background-color: #F5F3EB;
}

.page-numbers {
  border: none;
  border-radius: 0;
}

.pagination .current {
  background-color: transparent;
}

.page-numbers.dots {
  opacity: 1;
  background-color: transparent;
}

.c-article-pagination {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-article-pagination h2 {
  display: none;
}
.c-article-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-article-pagination .page-numbers {
  width: 3rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #7E898C;
}
.c-article-pagination .page-numbers.current {
  border-bottom: 1px solid #1C1C1D;
  color: #1C1C1D;
}
.c-article-pagination .c-pagination__prev,
.c-article-pagination .c-pagination__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6px;
}
.c-article-pagination .c-pagination__prev svg,
.c-article-pagination .c-pagination__next svg {
  width: 100%;
}
.c-article-pagination .c-pagination__prev path,
.c-article-pagination .c-pagination__next path {
  stroke: #494E50;
}

.breadcrumb {
  padding-block: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}

/* ------------------------------------------------
column-list
--------------------------------------------------- */
.column-list__article {
  padding-bottom: 12rem;
}

.column-list__list {
  display: grid;
  gap: 4rem;
}

.column-list__item {
  width: 100%;
}

.column-list__link {
  padding: 1.6rem;
  display: block;
  width: 100%;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.column-list__link:hover {
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
}

.column-list__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column-list__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
}

.column-list__category {
  padding: 0.4rem 0.8rem;
  display: inline-block;
  background-color: #fff;
  border: 0.5px solid #B9AC75;
  border-radius: 0.2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #B9AC75;
}

.column-list__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #494E50;
}

.column-list__contents {
  margin-top: 0.8rem;
}

.column-list__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1C1C1D;
}

.column-list__content {
  margin-top: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #1C1C1D;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/* ------------------------------------------------
column-detail
--------------------------------------------------- */
.column-detail__header {
  margin-bottom: 6.4rem;
}

.column-detail__header-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
}

.column-detail__date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #494E50;
}

.column-detail__category {
  padding: 0.4rem 1.2rem;
  display: inline-block;
  background-color: #F5F5F5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #444444;
}

.column-detail__category:link {
  color: #444444;
}

.column-detail__title {
  margin-top: 3.2rem;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.45;
  color: #EB789D;
}

.column-detail__content {
  border-top: 1px solid #EEEEEE;
  padding-top: 6.4rem;
}

.column-detail__thumbnail img {
  aspect-ratio: 725/408;
  -o-object-fit: cover;
     object-fit: cover;
}

.column-detail__body {
  margin-top: 9.6rem;
}

.detail-connection {
  margin-top: 9.6rem;
  padding-bottom: 6.4rem;
  overflow: hidden;
}

.detail-connection__head {
  padding: 0.8rem 0.4rem;
  border-bottom: 1px solid #CCCCCC;
}

.detail-connection__heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .detail-connection__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.8rem;
  }
}

.detail-connection__heading-text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #EB789D;
}

.detail-connection__heading-pickup {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333333;
}

.detail-connection__contents {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .detail-connection__contents .l-article-inner {
    display: contents;
  }
}

.detail-connection__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .detail-connection__list {
    padding-inline: 1.6rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .detail-connection__list::-webkit-scrollbar {
    display: none;
  }
}

.detail-connection__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .detail-connection__link {
    padding-bottom: 1rem;
    width: 22rem;
  }
}

.detail-connection__thumbnail {
  width: 100%;
}
.detail-connection__thumbnail img {
  aspect-ratio: 220/146;
  -o-object-fit: cover;
     object-fit: cover;
}

.detail-connection__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
}

.detail-connection__category {
  padding: 0.4rem 1.6rem;
  display: inline-block;
  border-radius: 5rem;
  border: 1px solid #333333;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.33;
  color: #333333;
}

.detail-connection__title {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6875;
  color: #333333;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.detail-connection__date {
  margin-top: 1.2rem;
  display: block;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.33;
  color: #333333;
}

.column-detail__back {
  border-top: 1px solid #EEEEEE;
}
@media screen and (max-width: 767px) {
  .column-detail__back {
    border-top: none;
  }
}

.column-detail__back-body {
  padding-block: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .column-detail__back-body {
    border-top: 1px solid #EEEEEE;
  }
}/*# sourceMappingURL=style.css.map */