@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
article
----------------------------------------*/
.c_article_head {
  background-color: var(--gray_lt);
  padding-block: 60px;
}
@media screen and (max-width: 768px) {
  .c_article_head {
    padding-block: 30px;
  }
}
.c_article_head_mv {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .c_article_head_mv {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c_article_ttl {
    margin-bottom: 20px;
  }
  .c_article_ttl::after {
    margin-top: 15px;
  }
}
.c_article_info {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media screen and (max-width: 768px) {
  .c_article_info {
    align-items: start;
    flex-direction: column;
    gap: 5px 10px;
  }
}
.c_article_info .m_column_tag {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .c_article_info .m_column_tag {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c_article_info .m_column_time {
    align-self: end;
  }
}
.c_article_mv {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .c_article_mv {
    padding-top: 0;
  }
}
.c_article_outline {
  background-color: var(--gray_lt);
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  .c_article_outline {
    padding-block: 50px;
  }
}
.c_article_outline_ttl {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c_article_outline_ttl {
    margin-bottom: 20px;
  }
}
.c_article_author {
  background-color: var(--main_color_lt);
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  .c_article_author {
    padding-block: 50px;
  }
}
.c_article_author_ttl {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c_article_author_ttl {
    margin-bottom: 20px;
  }
}
.c_article_author_grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 550px 1fr;
  padding-left: 40px;
}
@media screen and (max-width: 1280px) {
  .c_article_author_grid {
    gap: 40px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1080px) {
  .c_article_author_grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .c_article_author_grid {
    gap: 20px;
  }
}
.c_article_author_media {
  display: grid;
  gap: 30px;
  grid-template-columns: 220px 1fr;
}
@media screen and (max-width: 1080px) {
  .c_article_author_media {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .c_article_author_media {
    gap: 15px;
    grid-template-columns: 110px 1fr;
  }
}
.c_article_author_img img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
}
.c_article_author_info {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .c_article_author_info {
    margin-top: 0;
  }
}
.c_article_author_name {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .c_article_author_name {
    font-size: 1.8rem;
  }
}
.c_article_author_position {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .c_article_author_position {
    font-size: 1.4rem;
    margin-top: 8px;
  }
}
.c_article_author_txt {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .c_article_author_txt {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .c_article_author_txt {
    font-size: 1.4rem;
  }
}
.c_article_sns {
  margin-block: 20px 100px;
}
@media screen and (max-width: 768px) {
  .c_article_sns {
    margin-bottom: 50px;
  }
}
.c_article_sns_lists {
  display: flex;
  gap: 10px;
  justify-content: end;
  line-height: 1;
}
.c_article_sns_btn {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .c_article_sns_btn img {
    height: 20px;
    width: auto;
  }
}

/*--------------------------------------
cozy_cms
----------------------------------------*/
.cozy_cms > section {
  margin-block: 80px;
  margin-inline: auto;
  max-width: var(--site_width);
  padding-inline: var(--site_padding);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section {
    margin-block: 50px;
  }
}
.cozy_cms > section:only-of-type {
  margin-bottom: 0;
}
.cozy_cms > section + section {
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section + section {
    padding-top: 30px;
  }
}
.cozy_cms > section + section::before {
  background-color: var(--border_color);
  content: "";
  height: 1px;
  left: var(--site_padding);
  position: absolute;
  top: 0;
  width: calc(100% - var(--site_padding) * 2);
}
.cozy_cms > section > h2 {
  font-family: var(--font_jp_serif);
  font-size: 2.8rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
}
@media screen and (max-width: 768px) {
  .cozy_cms > section > h2 {
    font-size: 2.2rem;
  }
}
.cozy_cms > section > h3 {
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
}
@media screen and (max-width: 768px) {
  .cozy_cms > section > h3 {
    font-size: 1.8rem;
  }
}
.cozy_cms > section > h4 {
  border-bottom: 1px solid;
  font-size: 2rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section > h4 {
    font-size: 1.8rem;
    padding-bottom: 5px;
  }
}
.cozy_cms > section > h3,
.cozy_cms > section > h4 {
  margin-block: 50px -25px;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section > h3,
  .cozy_cms > section > h4 {
    margin-block: 30px -15px;
  }
}
.cozy_cms > section > p,
.cozy_cms > section > figure,
.cozy_cms > section > div,
.cozy_cms > section > ul,
.cozy_cms > section > ol,
.cozy_cms > section > table {
  margin-block: 50px;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section > p,
  .cozy_cms > section > figure,
  .cozy_cms > section > div,
  .cozy_cms > section > ul,
  .cozy_cms > section > ol,
  .cozy_cms > section > table {
    margin-block: 30px;
  }
}
.cozy_cms > section p a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .cozy_cms > section p a:hover {
    text-decoration: none;
  }
}
.cozy_cms > section figure {
  text-align: center;
}
.cozy_cms > section b,
.cozy_cms > section em,
.cozy_cms > section strong {
  font-weight: var(--font_weight_bold);
}
.cozy_cms > section ul li {
  padding-left: 1em;
  position: relative;
}
.cozy_cms > section ul li + li {
  margin-top: 0.3em;
}
.cozy_cms > section ul li::before {
  background-color: var(--main_color);
  border-radius: 50%;
  content: "";
  height: 0.4em;
  width: 0.4em;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.cozy_cms > section ul li a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .cozy_cms > section ul li a:hover {
    text-decoration: none;
  }
}
.cozy_cms > section ol {
  counter-reset: listNum;
}
.cozy_cms > section ol li {
  padding-left: 30px;
  position: relative;
}
.cozy_cms > section ol li + li {
  margin-top: 0.3em;
}
.cozy_cms > section ol li::before {
  background-color: var(--main_color);
  border-radius: 50%;
  color: rgb(255, 255, 255);
  content: counter(listNum);
  counter-increment: listNum;
  display: grid;
  font-weight: var(--font_weight_bold);
  height: 23px;
  left: 0;
  place-content: center;
  position: absolute;
  top: 2px;
  width: 23px;
}
.cozy_cms > section ol li a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .cozy_cms > section ol li a:hover {
    text-decoration: none;
  }
}
.cozy_cms > section table thead::after {
  content: "";
  display: block;
  height: 15px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section table thead::after {
    height: 8px;
  }
}
.cozy_cms > section table thead th {
  border: none;
  padding-block: 10px;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section table thead th {
    padding-block: 5px;
  }
}
.cozy_cms > section table tbody th {
  text-align: center;
  width: 180px;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section table tbody th {
    width: 30%;
  }
}
.cozy_cms > section table th {
  background-color: rgb(238, 238, 238);
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
}
.cozy_cms > section table th,
.cozy_cms > section table td {
  border: 1px solid var(--border_color);
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  padding: 15px 20px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .cozy_cms > section table th,
  .cozy_cms > section table td {
    font-size: 1.4rem;
    padding: 8px 10px;
  }
}
.cozy_cms > section table th[rowspan],
.cozy_cms > section table td[rowspan] {
  vertical-align: middle;
}
.cozy_cms > section table th img,
.cozy_cms > section table td img {
  display: block;
  margin-inline: auto;
}
.cozy_cms > section table a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .cozy_cms > section table a:hover {
    text-decoration: none;
  }
}
.cozy_cms .c_table_wrap {
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_table_wrap {
    margin-inline: calc(-1 * var(--site_padding));
    padding-inline: var(--site_padding);
  }
}
.cozy_cms .c_table_wrap table {
  margin-block: 0;
  table-layout: auto;
}
@media screen and (max-width: 1080px) {
  .cozy_cms .c_table_wrap table {
    width: max-content;
  }
  .cozy_cms .c_table_wrap table td {
    width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .cozy_cms .c_table_wrap table td {
    width: 120px;
  }
}
.cozy_cms .c_row {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1080px) {
  .cozy_cms .c_row {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}
.cozy_cms .c_row div > * + * {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_row div > * + * {
    margin-top: 30px;
  }
}
.cozy_cms .m_box p + p {
  margin-top: 1em;
}
.cozy_cms .c_point_head {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 100px 1fr;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_point_head {
    gap: 15px;
    grid-template-columns: 75px 1fr;
    margin-bottom: 15px;
  }
}
.cozy_cms .c_point_num {
  background-color: var(--main_color);
  color: rgb(255, 255, 255);
  display: block;
  font-family: var(--font_jp_serif);
  font-size: 5rem;
  font-weight: var(--font_weight_bold);
  height: 100px;
  letter-spacing: 0.025em;
  line-height: 1;
  padding-top: 12px;
  text-align: center;
  white-space: nowrap;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_point_num {
    height: 75px;
    font-size: 3rem;
    padding-top: 14px;
    width: 75px;
  }
}
.cozy_cms .c_point_num::before {
  content: "Point";
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_point_num::before {
    font-size: 1.5rem;
  }
}
.cozy_cms .c_point_ttl {
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  letter-spacing: 0.025em;
  line-height: var(--line_height_headline);
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_point_ttl {
    font-size: 1.8rem;
  }
}
.cozy_cms .c_point_list {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  margin-block: 80px;
}
@media screen and (max-width: 1080px) {
  .cozy_cms .c_point_list {
    grid-template-columns: 1fr;
    margin-block: 40px;
  }
}
.cozy_cms .c_buyer {
  display: grid;
  gap: 30px;
  grid-template-columns: 150px 1fr;
  margin-block: 80px;
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_buyer {
    gap: 15px;
    grid-template-columns: 80px 1fr;
    margin-block: 40px;
  }
}
.cozy_cms .c_buyer_img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  margin-inline: auto;
  object-fit: cover;
  width: calc(100% - 10px);
}
.cozy_cms .c_buyer_name {
  display: block;
  font-size: 2.4rem;
  font-weight: var(--font_weight_bold);
  line-height: var(--line_height_headline);
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_buyer_name {
    font-size: 1.4rem;
    margin-top: 6px;
  }
}
.cozy_cms .c_buyer_body {
  background-color: var(--main_color_lt);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .cozy_cms .c_buyer_body {
    border-radius: 5px;
    font-size: 1.4rem;
    padding: 15px;
  }
}