@charset "UTF-8";


/*---------------------------------------------------------------*\
命名規則

$大枠レイアウト > 共通 > 〇〇〇  //サイト内で共通のもの

$コンポーネント > 共通 > 〇〇〇  //サイト内で共通のもの
$コンポーネント > コラムページ > 〇〇〇  //コラムページで使用しているもの

$書式設定 > 共通 > 〇〇〇  //サイト内で共通のもの
$書式設定 > コラムページ > 〇〇〇  //コラムページで使用しているもの

\*---------------------------------------------------------------*/


/*---------------------------------------------------------------*\
$大枠レイアウト > 共通 > 記事のボディーのwrap
\*---------------------------------------------------------------*/

.wrap_column_body {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 3%;
  position: relative;
}


@media screen and (min-width: 1700px) {

  .wrap_column_body {
    max-width: 1500px;
  }
}


@media screen and (max-width: 950px) {

  /* .wrap_column_body {
    width: 100%;
  } */
}



/*---------------------------------------------------------------*\
$大枠レイアウト > 共通 > 記事のボディー要素
\*---------------------------------------------------------------*/

/* body border */
.body_border {
  width: 1px;
  height: 100vh;
  position: sticky;
  top: 0;
  background-color: #eee;
}

/* body content */
.body_content {
  gap: 100px;
  width: calc((100% - 6% - 1px - 300px));
}


@media screen and (max-width: 1080px) {

  /* body content */
  .body_content {
    width: calc((95% - 200px));
  }
}

@media screen and (max-width: 950px) {

  /* body border */
  .body_border {
    display: none !important
  }

  /* body content */
  .body_content {
    width: 100% !important;
  }
}

@media screen and (max-width: 600px) {

  /* body content */
  .body_content {
    gap: 56px;
  }
}



/*---------------------------------------------------------------*\
$大枠レイアウト > 共通 > グループ
\*---------------------------------------------------------------*/

.group {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.inner_group {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}


@media screen and (max-width: 950px) {

  /* .group {
    width: 95%;
    margin: 0 auto;
  } */
}


@media screen and (max-width: 600px) {

  .group {
    gap: 32px;
  }

  .inner_group {
    gap: 32px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > 共通 > パラグラフ
\*---------------------------------------------------------------*/

section.group>.wrap_paragraph {
  gap: 40px;
}



/*---------------------------------------------------------------*\
$書式 > 共通 > 基本設定
\*---------------------------------------------------------------*/

/* image */
.tall_image {
  width: 600px;
}

/* context */
.context {
  gap: 40px;
}

.context p {
  line-height: 2;
  display: inline-block;
  vertical-align: baseline;
  font-size: 17px !important;
  font-feature-settings: "normal";
}

.context span {
  line-height: 2;
  display: inline-block;
  vertical-align: baseline;
  font-size: 17px !important;
  font-feature-settings: "normal";
}

.context span:not([style]) {
  line-height: 2;
  display: inline-block;
  vertical-align: baseline;
  font-size: 17px !important;
  font-feature-settings: "normal";
}

.context img {
  border: solid 1px #eee;
}

/* CMS記事のh2 */
#context h2 {
  background-color: #9A836C;
  position: relative;
  border-radius: 4px;
  padding: 26px;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

#context h2 * {
  font-size: 24px !important;
  color: #fff !important;
  line-height: 1.3 !important;
  background: inherit !important;
}

#context h2:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc((100% - 8px));
  height: calc((100% - 8px));
  margin: auto;
  border: dashed 1px #fff;
  z-index: 1;
}

.context a {
  line-height: 2;
  display: inline-block;
  vertical-align: baseline;
  font-feature-settings: "normal";
  font-size: 17px !important;
  text-decoration: underline !important;
  color: #9A836C !important;
}

.context strong {
  font-weight: bold;
}

/* image */
img,
p>img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

/* caption */
.caption {
  font-size: 12px;
  color: #888;
}

.wp-caption {
  width: 100% !important;
}


@media screen and (max-width: 600px) {

  /* image */
  .tall_image {
    width: 100%;
  }

  /* context */
  .context p,
  .context span,
  .context a {
    font-size: 13px !important;
  }

  .context span:not([style]) {
    font-size: 13px !important;
  }

  /* CMS記事のh2 */
  #context h2 * {
    font-size: 16px !important;
  }
}



/*---------------------------------------------------------------*\
$書式 > 共通 > テキストハイライト
\*---------------------------------------------------------------*/

.marker {
  background: linear-gradient(transparent 60%, yellow 0%);
}



/*---------------------------------------------------------------*\
$コンポーネント > 共通 > スクロール追随メニュー
\*---------------------------------------------------------------*/

/* common */
.wrap_index_menu {
  display: flex;
  background-color: rgba(255, 255, 255, .97);
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  cursor: pointer;
  top: -100px;
  bottom: inherit;
  /* 初期は隠れている状態 */
  transition: top 0.3s;
}

/* menu SP */
.index_menu_sp {
  display: none;
}

/* menu PC */
.index_menu_pc {
  width: 100%;
}

/* PC menu nav - hovered */
.index_menu_pc .header .content_menu_services,
.index_menu_pc .header .content_menu_company {
  top: 100px;
}

.index_menu_pc .header {
  color: #333 !important;
  position: relative;
  border-bottom: solid 1px #eee;
}

.index_menu_pc .header * {
  color: #333 !important;
}

.index_menu_pc .header .main_menu_pc li a {
  color: #333;
}

.index_menu_pc .header .cls-1 {
  fill: #333;
}

.index_menu_pc .header .menu_.header_sp .dot {
  background-color: #333;
}

.index_menu_pc .header .divider {
  background-color: #eee;
}

.index_menu_pc .header .triangle {
  border-color: #333 transparent transparent transparent;
}

.index_menu_pc .header .hover_motion_white:after {
  background-color: #333;
}

.index_menu_pc .header .content_menu_services * {
  color: #fff !important;
}

.index_menu_pc .header .each_item:hover .title_menu {
  color: #B4CF13 !important;
}

.index_menu_pc .header .button_.header .icon path {
  fill: #333 !important;
}

/* breadcrumbs */
.index_menu_pc .header .breadcrumbs {
  display: none;
}


@media screen and (max-width: 600px) {

  /* common */
  .wrap_index_menu {
    /* 初期は隠れている状態 */
    transition: bottom 0.3s;
    /* 下に表示するように変更 */
    top: inherit;
    bottom: -100px;
  }

  /* menu PC */
  .index_menu_pc {
    display: none;
  }

  /* menu SP */
  .index_menu_sp {
    display: flex;
    height: 48px;
    top: auto;
    width: 100%;
  }

  .index_menu_sp .content_menu {
    width: 100%;
    margin-left: 0;
  }

  .index_menu_sp .content_menu ul {
    width: calc((100% - 48px));
    /* border-top: solid 1px #eee; */
  }

  .index_menu_sp .global_menu {
    width: 48px;
    height: 48px;
    gap: 4px;
  }

  .index_menu_sp .border {
    height: 1px;
    width: 16px;
  }

  .index_menu_sp>ul {
    width: calc((100% - 48px));
    border-top: solid 1px#ddd;
  }

  .index_menu_sp .each_menu {
    gap: 4px;
    width: calc((100%)/4);
    height: auto;
    position: relative;
  }

  .index_menu_sp .each_menu a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .index_menu_sp .icon {
    width: 16px;
    height: 16px;
  }

  .index_menu_sp .subject {
    font-size: 10px;
    scale: .85;
  }

  /* コラム > flowページのみ 目次を目立たせる */
  body.column_flow .index_menu_sp .each_menu:nth-of-type(2) {
    background-color: #B4CF13;
  }
}



/*---------------------------------------------------------------*\
$書式 > 共通 > 文字ハイライト
\*---------------------------------------------------------------*/

p {
  font-feature-settings: normal !important;
}

p>strong,
strong {
  background: linear-gradient(to right, #DBF637 0%, #9fffec 100%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 50%;
  width: fit-content;
  font-weight: bold;
}

p>span.underline,
span.underline,
.underline {
  text-decoration: underline;
  display: inline !important;
  font-weight: bold;
}


@media screen and (max-width: 600px) {

  p>span.underline,
  span.underline,
  .underline {
    font-size: 13px;
  }
}


/*---------------------------------------------------------------*\
$書式 > コラムページ > テーブル  //flowページ
\*---------------------------------------------------------------*/

/* general */
.wrap_tables {
  gap: 16px;
}

.table {
  background-color: #fafafa;
  padding: 16px;
  gap: 12px;
}

/* list */
.table .list {
  gap: 8px;
  padding: 16px;
  border-bottom: solid 1px #eee;
}

.table .list:last-of-type {
  border-bottom: none;
}

.table .list * {
  font-size: 15px;
}

/* stepの中でlistを展開する場合 */
.step .table {
  background-color: #fff;
  padding: 0 16px;
}

.step .table .list {
  padding: 16px 0;
}

/* extra */
.table_ex {
  background-color: #fafafa;
  padding: 20px;
  gap: 12px;
}

.table_ex .list {
  gap: 8px;
  padding: 20px 16px;
  border-bottom: solid 1px #eee;
}

.table_ex .badge {
  font-size: 12px;
  width: fit-content;
  padding: 4px 10px;
  background-color: #eee;
}

.table_ex .context {
  font-size: 16px;
}


@media screen and (max-width: 600px) {

  /* general */
  .table {
    padding: 10px;
  }

  /* list */
  .table .list {
    padding: 16px 4px;
  }

  .table .list * {
    font-size: 13px;
  }

  /* stepの中でlistを展開する場合 */
  .step .table {
    padding: 0 12px;
  }

  .step .table .list {
    padding: 10px 0;
  }

  .step .table .list * {
    font-size: 12px;
  }

  /* extra */
  .table_ex {
    padding: 10px;
  }

  .table_ex .list {
    padding: 18px 10px;
  }

  .table_ex .badge {
    font-size: 10px !important;
  }

  .table_ex .list * {
    font-size: 13px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > ステップ  //flowページ
\*---------------------------------------------------------------*/

/* general */
.body_content .step {
  gap: 32px;
}

.body_content .step:first-of-type {
  margin: 64px 0 0 0;
}

.body_content .step * {
  font-size: 16px;
}

.body_content .step .sticky {
  position: sticky;
  top: 32px;
}

/* step > subject */
.body_content .step .wrap_subject {
  gap: 12px;
}

.body_content .step .potch {
  width: 24px;
  height: 24px;
  position: relative;
  border: solid 1px #B4CF13;
  border-radius: 50%;
}

.body_content .step .potch:after {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #B4CF13;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: '';
}

.body_content .step .subject {
  font-size: 24px;
  position: relative;
}

.body_content .step .subject:before:before {
  width: 10px;
  height: 10px;
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: #B4CF13;
}

/* step > detail */
.body_content .step .detail {
  gap: 16px;
}

.body_content .step .border {
  height: auto;
  width: 12px;
  margin-left: 11px;
  border-left: dashed 1px #222;
}

.body_content .step .info {
  width: -webkit-fill-available;
  margin: 0 0 40px 0;
}

.body_content .step .info.no_image {
  width: 100%;
}

/* step > detail > info > contexts */
.body_content .step .info.no_image .contexts {
  width: 100%;
}

/* step > detail > info > contexts */
.body_content .step .contexts {
  padding: 16px;
  width: calc((100% - 40px - 36%));
  background-color: #fafafa;
  gap: 40px;
  height: fit-content;
}

.body_content .step .contexts dl {
  display: flex;
  gap: 6px;
  align-items: first baseline;
}

.body_content .step .contexts dt,
.body_content .step .contexts dd {
  line-height: 2;
}

/* step > detail > info > contexts > paragrah */
.body_content .step .wrap_paragraph {
  gap: 32px;
}

/* step > detail > info > image */
.body_content .step .image {
  width: 36%;
}

/* step > detail > info > contexts > inline steps */
.body_content .step .inline_step {
  gap: 24px;
}


@media screen and (max-width: 1080px) {

  /* step > detail */
  .body_content .step .info {
    flex-direction: column-reverse;
    gap: 24px;
  }

  /* step > detail - reverse */
  .body_content .step .info.reverse {
    flex-direction: column;
  }

  /* step > detail > info > image */
  .body_content .step .image {
    width: 100%;
    overflow: hidden;
  }

  .body_content .step .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* step > detail > info > contexts > inline_step */
  .body_content .step .contexts {
    width: 100%;
  }
}


@media screen and (max-width: 600px) {

  /* general */
  .body_content .step * {
    font-size: 13px;
  }

  /* step > subject */
  .body_content .step .wrap_subject {
    gap: 8px;
  }

  .body_content .step .potch {
    width: 17px;
    height: 17px;
  }

  .body_content .step .potch:after {
    width: 10px;
    height: 10px;
  }

  .body_content .step .subject {
    font-size: 17px;
  }

  /* step > detail */
  .body_content .step .detail {
    gap: 10px;
  }

  .body_content .step .border {
    width: 8px;
    margin-left: 8px;
  }

  .body_content .step .info {
    gap: 16px;
  }

  /* step > detail > info > contexts */
  .body_content .step .contexts {
    padding: 16px;
  }
}



/*---------------------------------------------------------------*\
$書式 > コラムページ > リンクカード  //flowページ
\*---------------------------------------------------------------*/

.link_card {
  gap: 14px;
}

.link_card .each_card {
  padding: 28px 0 32px;
  border-radius: 8px;
  background-color: #000;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.link_card .each_card.instagram {
  background-image: url('../img/column/flow/background_instagram.jpg');
}

.link_card .each_card.seminar {
  background-image: url('../img/column/flow/background_seminar.jpg');
}

.link_card .each_card.consultant {
  background-image: url('../img/column/flow/background_consulting.jpg');
}

.link_card .each_card:before {
  display: block;
  content: '';
  background-image: url(../img/overlays/05.png);
  background-size: 4px;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.link_card .each_card:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .45);
  z-index: 1;
}

.link_card .each_card a {
  width: 100%;
  height: 100%;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.link_card .each_card .icon {
  width: auto;
  height: 20px;
  margin: 0 auto;
}

.link_card .each_card .icon_seminar {
  height: 26px;
}


@media screen and (max-width: 600px) {

  .link_card .each_card .icon {
    height: 18px;
  }

  .link_card .each_card .icon_seminar {
    height: 24px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > CTAボタン
\*---------------------------------------------------------------*/

body.column .cta_button {
  width: 210px;
  height: 44px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 550;
  border-radius: 80px;
}

@media screen and (max-width: 600px) {

  body.column .cta_button {
    width: 200px;
    height: 40px;
    font-size: 12px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > ファーストビュー
\*---------------------------------------------------------------*/

/* common */
#firstview {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: auto;
  position: relative;
  z-index: 2;
  margin: 0 auto 80px;
}

#firstview:before {
  display: block;
  content: '';
  width: 85px;
  border-right: solid 1px rgba(0, 0, 0, .15);
  position: absolute;
  left: 0;
  z-index: 1;
  height: 585px;
  bottom: 0;
}

#firstview:after {
  display: block;
  content: '';
  width: 85px;
  border-left: solid 1px rgba(0, 0, 0, .15);
  position: absolute;
  right: 0;
  z-index: 1;
  height: 585px;
  bottom: 0;
}

/* text floating */
#firstview .floating_text {
  gap: 16px;
  position: absolute;
  top: 200px;
}

#firstview .floating_text .border {
  width: 100%;
  border-top: solid 1px rgba(0, 0, 0, .12);
}

#firstview .floating_text .bg_text {
  width: max-content !important;
  color: rgba(0, 0, 0, .03);
}


/* info */
#firstview .content_info {
  height: 100%;
  width: calc((100% - 200px));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 430px 0 80px;
}

#firstview .inner_content_info {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 24px;
}

#firstview .content_info .wrap_headline {
  gap: 10px;
}

#firstview .content_info .hierarchy {
  font-size: min(10vw, 14px);
}

#firstview .content_info .headline {
  position: relative;
  z-index: 2;
  font-size: min(2.7vw, 45px);
  line-height: 1.3;
}

#firstview .content_info .subtitle {
  margin: 10px 0 0 0;
  font-size: 17px;
  opacity: .6;
}

#firstview .content_info .headline:after {
  border-bottom: solid 1px rgba(0, 0, 0, .15);
  content: '';
  padding: 36px 0 0 0;
  display: block;
}


/* chapters */
#firstview .content_info .chapters {
  gap: 16px;
}

#firstview .content_info .chapters .suggests {
  font-size: 13px;
}

#firstview .content_info .chapters .list {
  gap: 12px;
}

#firstview .content_info .chapters .article a {
  font-size: 12px;
}


/* share */
#firstview .content_share {
  position: absolute;
  right: 24px;
  bottom: 0;
  gap: 32px;
  width: fit-content;
  z-index: 10;
}

#firstview .content_share .subject {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 14px;
}

#firstview .content_share .icons {
  gap: 32px;
}

#firstview .content_share .each_sns a,
#firstview .content_share .each_sns button {
  width: 24px;
  height: 24px;
}

#firstview .content_share .each_sns svg {
  display: block;
  fill: #fff;
}

#firstview .content_share .success_msg {
  display: none;
  position: fixed;
  width: 300px;
  height: 56px;
  background-color: rgba(0, 0, 0, .75);
  top: 100px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 10;
  border-radius: 4px;
}

#firstview .content_share .success_msg>span {
  font-size: 14px;
}


@media screen and (max-width: 1400px) {

  #firstview:before {
    display: none;
  }

  #firstview:after {
    display: none;
  }

  #firstview .content_info {
    width: calc((100% - 50px));
  }

  #firstview .inner_content_info {
    padding: 0;
  }
}


@media screen and (max-width: 1080px) {

  /* info */
  #firstview .content_info>.headline {
    font-size: 26px;
  }

  /* option */
  .headline_font_ex {
    font-size: 26px !important;
  }

  /* chapters */
  #firstview .content_info .chapters .article a {
    font-size: 10px;
  }
}


@media screen and (max-width: 950px) {

  /* share */
  #firstview .content_share {
    height: 640px;
    right: 20px;
    width: 64px;
  }

  /* info */
  #firstview .content_info {
    display: none;
  }
}


@media screen and (max-width: 600px) {

  /* share */
  #firstview .content_share {
    display: none;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > ファーストビューのサムネイル周辺
\*---------------------------------------------------------------*/

/* thumbnail */
#firstview .cover {
  width: 90%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto 0;
}

#firstview .cover .blank {
  width: 280px;
  gap: 81px;
}

#firstview .cover .visual {
  width: calc((100% - 6% - 1px - 300px));
  border-radius: 6px;
  padding: 230px 0 80px;
  position: relative;
  z-index: 2;
}

#firstview .cover .visual img {
  width: auto;
  height: 670px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
}

/* SD headline */
#firstview .wrap_headline_sd {
  display: none;
}


@media screen and (max-width: 1080px) {

  /* thumbnail */
  #firstview .cover .blank {
    width: 200px;
  }

  #firstview .cover .visual {
    width: calc((100% - 8% - 1px - 200px));
  }
}


@media screen and (max-width: 950px) {

  #firstview {
    margin: 0 auto;
  }

  /* thumbnail */
  #firstview .cover {
    height: fit-content;
    width: 100% !important;
    top: 120px;
  }

  #firstview .cover .visual {
    width: 100% !important;
    gap: 24px;
    height: fit-content;
    min-height: inherit;
    justify-content: flex-start;
    padding: 100px 0 80px;
  }

  #firstview .cover .visual img {
    max-width: 400px;
    width: 65%;
    height: auto;
  }

  #firstview .cover .blank {
    display: none;
  }

  /* SD headline */
  #firstview .wrap_headline_sd {
    display: flex;
    gap: 8px;
    padding: 150px 0 0 0;
  }

  #firstview .directory_sd {
    font-size: 12px;
  }

  #firstview .headline_sd {
    font-size: 28px;
    line-height: 1.4;
  }

  #firstview .subtitle_sd {
    font-size: 13px;
    margin: 10px 0 0 0;
    opacity: .6;
  }
}


@media screen and (max-width: 600px) {

  /* text floating */
  #firstview .floating_text {
    top: 130px;
  }

  /* thumbnail */
  #firstview .cover {
    top: 100px;
  }

  #firstview .cover .visual {
    padding: 160px 0 64px;
    gap: 16px;
  }

  /* SD headline */
  #firstview .wrap_headline_sd {
    padding: 0;
  }

  #firstview .headline_sd {
    font-size: 19px;
  }

  #firstview .directory_sd {
    font-size: 10px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > サイドメニュー > 目次(通常)
\*---------------------------------------------------------------*/

/* sidemenu */
.sidemenu.index {
  position: sticky;
  top: 48px;
  width: 300px;
}

.sidemenu.index .badge {
  background-color: #fff;
  font-size: 14px;
  height: 52px;
  width: 100%;
  align-items: baseline;
  text-align: left;
  position: relative;
  border: solid 1px #eee;
  padding: 0 16px;
  color: #000;
  z-index: 1;
}

.sidemenu.index ul {
  gap: 14px;
  padding: 16px;
  background: #fafafa;
}

.sidemenu.index .each_menu {
  position: relative;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: solid 1px #eee;
}

.sidemenu.index .each_menu:last-child {
  border-bottom: none !important;
  padding-bottom: 0;
}

.sidemenu.index .detail {
  width: calc((100% - 13px));
  font-size: 13px;
  line-height: 1.5;
}

.sidemenu.index .detail:hover {
  color: #99b300;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidemenu.index .each_menu:before {
  display: block;
  content: '';
  width: 6px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/design-parts/icon_arrow.svg);
}


@media screen and (max-width: 1080px) {

  .sidemenu.index {
    width: 250px;
  }
}


@media screen and (max-width: 950px) {

  .sidemenu.index {
    display: none !important;
  }
}


/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > サイドメニュー > 目次(拡張)
\*---------------------------------------------------------------*/

/* sidemenu */
.sidemenu_expand.index {
  width: 300px;
  position: sticky;
  top: 48px;
  height: 90vh;
  overflow: scroll;
  background: #fafafa;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sidemenu_expand.index:-webkit-scrollbar {
  display: none;
}

.sidemenu_expand.index .badge {
  background-color: #fff;
  font-size: 14px;
  height: 52px;
  width: 100%;
  align-items: baseline;
  text-align: left;
  position: relative;
  border: solid 1px #eee;
  padding: 0 16px;
  color: #000;
  z-index: 1;
}

.sidemenu_expand.index ul {
  gap: 14px;
  padding: 16px;
  height: calc((100% - 52px));
}

.sidemenu_expand.index .each_menu {
  position: relative;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: solid 1px #eee;
}

.sidemenu_expand.index .each_menu:last-child {
  border-bottom: none !important;
  padding-bottom: 20px;
}

.sidemenu_expand.index .detail {
  width: calc((100% - 13px));
  font-size: 13px;
  line-height: 1.5;
  gap: 6px;
}

.sidemenu_expand.index a:hover {
  color: #99b300;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sidemenu_expand.index .each_menu:before {
  display: block;
  content: '';
  width: 6px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/design-parts/icon_arrow.svg);
}

/* nesting */
.sidemenu_expand.index .wrap_nesting {
  width: 100%;
}

/* 初期状態で .nesting を非表示 */
.sidemenu_expand.index .nesting {
  max-height: 0;
  gap: 10px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  margin: 4px 0 0;
}

/* .open クラスが追加されたときに表示 */
.sidemenu_expand.index .nesting.open {
  max-height: 500px;
  opacity: 1;
}

.sidemenu_expand.index .nesting a {
  font-size: 12px;
  margin: 0 0 0 8px;
}

.sidemenu_expand.index .nesting a:last-child {
  margin: 0 0 16px 8px;
}

.sidemenu_expand.index .toggle_button {
  border: none;
  font-size: 12px;
  color: #99b300;
  background-color: none;
  width: fit-content;
}

/* bottom layer */
.sidemenu_expand.index a.bottom_layer {
  margin: 0 0 0 20px !important;
}

.sidemenu_expand.index a.bottom_layer:last-child {
  margin: 0 0 16px 20px !important;
}


/* badge */
.sidemenu_expand.index .step {
  font-size: 10px;
  width: fit-content;
  font-weight: bold;
  border: solid 1px #222;
  padding: 4px 6px;
}

.sidemenu_expand.index .conclusion {
  font-size: 13px;
  margin: 8px 0 0 8px;
}


@media screen and (max-width: 1080px) {

  .sidemenu_expand.index {
    width: 250px;
  }
}


@media screen and (max-width: 950px) {

  .sidemenu_expand.index {
    display: none !important;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > サイドメニュー > 物件情報
\*---------------------------------------------------------------*/

/* sidemenu */
.sidemenu.data {
  position: sticky;
  top: 100px;
  width: 280px;
  overflow: hidden;
  border-radius: 4px;
}

.sidemenu.data .headline {
  font-size: 14px;
  height: 52px;
  border: solid 1px #eee;
  width: 100%;
  align-items: baseline;
  text-align: left;
  padding: 0 16px;
}

.sidemenu.data ul {
  gap: 14px;
  padding: 20px;
  background-color: #fafafa;
}

.sidemenu.data .each_menu {
  position: relative;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: solid 1px #eee;
}

.sidemenu.data .each_menu:last-child {
  border-bottom: none !important;
  padding-bottom: 0;
}

.sidemenu.data .subject,
.sidemenu.data .detail {
  font-size: 12px;
}

.sidemenu.data .subject {
  width: 72px;
}

.sidemenu.data .detail {
  width: calc(100% - 90px);
}

.sidemenu.data .detail br {
  display: none;
}

.sidemenu.data .each_menu:before {
  display: block;
  content: '';
  width: 6px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/design-parts/icon_arrow.svg);
}


@media screen and (max-width: 950px) {

  .sidemenu.data {
    display: none !important;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > 共通 > サイドメニュー > バナー
\*---------------------------------------------------------------*/

#banners {
  gap: 16px;
  margin: 16px 0 0 0;
}



/*---------------------------------------------------------------*\
$モバイル下部メニュー >　モーダル内部 > コラム一覧
\*---------------------------------------------------------------*/

.modal_all_column .wrap_headlines {
  gap: 16px;
}

.modal_all_column .content {
  gap: 32px;
}

.modal_all_column .wrap_column {
  gap: 28px;
}

.modal_all_column .each_content {
  width: calc((100% - 28px)/2);
}

.modal_all_column .each_content a {
  width: 100%;
  height: 100%;
  gap: 12px;
}

.modal_all_column .info {
  gap: 8px;
  width: 100%;
}

.modal_all_column .thumbnail {
  width: 100%;
}

.modal_all_column .description {
  font-size: 12px;
}

.modal_all_column .read {
  font-size: 12px;
}


@media screen and (max-width: 600px) {

  .modal_all_column .content {
    gap: 16px;
  }

  .modal_all_column .wrap_column {
    gap: 16px;
  }

  .modal_all_column .each_content {
    width: 100%;
  }

  .modal_all_column .each_content a {
    flex-direction: row-reverse;
    align-items: center;
  }

  .modal_all_column .info {
    gap: 2px;
  }

  .modal_all_column .subject {
    font-size: 12px;
  }

  .modal_all_column .description {
    font-size: 10px;
  }

  .modal_all_column .read {
    display: none;
  }
}



/*---------------------------------------------------------------*\
$モバイル下部メニュー >　モーダル内部 > 目次(通常)
\*---------------------------------------------------------------*/

.index_menu .wrap_headlines {
  gap: 16px;
}

.index_menu .content {
  gap: 32px;
}

.index_menu .each_chapter {
  position: relative;
  gap: 8px;
  padding: 16px 8px;
  border-bottom: dashed 1px rgba(46, 45, 45, 0.09);
}

.index_menu .each_chapter:before {
  display: block;
  content: '';
  width: 6px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('../img/design-parts/icon_arrow.svg');
}

.index_menu .each_chapter a {
  font-size: 13px;
  width: fit-content;
}


@media screen and (max-width: 600px) {

  .index_menu .content {
    gap: 16px;
  }

  .index_menu .each_chapter:before {
    width: 5px;
    height: 7px;
  }

  .index_menu .each_chapter a {
    font-size: 12px;
  }
}


/*---------------------------------------------------------------*\
$モバイル下部メニュー >　モーダル内部 > 目次(拡張)
\*---------------------------------------------------------------*/

/* sidemenu */
.index_menu_enpand {
  width: 300px;
  position: sticky;
  top: 48px;
}

.index_menu_enpand .badge {
  background-color: #fff;
  font-size: 14px;
  height: 52px;
  width: 100%;
  align-items: baseline;
  text-align: left;
  position: relative;
  border: solid 1px #eee;
  padding: 0 16px;
  color: #000;
  z-index: 1;
}

.index_menu_enpand ul {
  height: calc((100% - 52px));
}

.index_menu_enpand .each_menu {
  position: relative;
  gap: 10px;
  padding: 16px 8px;
  border-bottom: solid 1px #eee;
}

.index_menu_enpand .each_menu:last-child {
  border-bottom: none !important;
  padding-bottom: 0;
}

.index_menu_enpand .detail {
  width: calc((100% - 13px));
  font-size: 13px;
  line-height: 1.5;
  gap: 6px;
}

.index_menu_enpand a:hover {
  color: #99b300;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.index_menu_enpand .each_menu:before {
  display: block;
  content: '';
  width: 6px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/design-parts/icon_arrow.svg);
}

/* nesting */
.index_menu_enpand .wrap_nesting {
  width: 100%;
}

/* 初期状態で .nesting を非表示 */
.index_menu_enpand .nesting {
  max-height: 0;
  gap: 10px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  margin: 4px 0 0;
}

/* .open クラスが追加されたときに表示 */
.index_menu_enpand .nesting.open {
  max-height: 500px;
  opacity: 1;
  margin: 12px 0 20px;
}

.index_menu_enpand .nesting a {
  font-size: 12px;
  margin: 0 0 0 8px;
}

.index_menu_enpand .toggle_button {
  border: none;
  font-size: 12px;
  color: #99b300;
  background-color: none;
  width: fit-content;
}

/* bottom layer */
.index_menu_enpand .bottom_layer {
  margin: 0 0 0 20px;
}

/* badge */
.index_menu_enpand .step {
  font-size: 10px;
  width: fit-content;
  font-weight: bold;
  border: solid 1px #222;
  padding: 4px 6px;
}

.index_menu_enpand .conclusion {
  font-size: 13px;
  margin: 8px 0 0 0;
}



/*---------------------------------------------------------------*\
$モバイル下部メニュー >　モーダル内部 > 物件情報
\*---------------------------------------------------------------*/

.data_menu {
  position: relative;
  width: 100%;
}

.data_menu .content {
  height: fit-content;
  gap: 56px;
  padding: 56px;
}

.data_menu .headline {
  font-size: 28px;
}

.data_menu .title {
  gap: 4px;
}

.data_menu .subject {
  width: 90px;
}

.data_menu .wrap_menus {
  gap: 20px;
}

.data_menu .menus {
  gap: 16px;
}

.data_menu .each_menu {
  position: relative;
  gap: 6px;
}

.data_menu .each_menu a {
  font-size: 13px;
  width: fit-content;
  text-decoration: underline;
}


@media screen and (max-width: 600px) {

  .data_menu .content {
    padding: 32px;
  }

  .data_menu .headline {
    font-size: 14px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > 共通 > 背景画像付きメッセージ
\*---------------------------------------------------------------*/

#message_card {
  width: 100%;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

#message_card:before {
  position: absolute;
  top: -180px;
  right: 0;
  z-index: 2;
  left: 0;
  margin: auto;
  width: 1px;
  height: 180px;
  background-color: #333;
  display: block;
  content: '';
}

/* content_area */
#message_card .content_area {
  position: relative;
  overflow: hidden;
}

#message_card .content_area:before {
  display: block;
  content: '';
  background-image: url(../img/overlays/05.png);
  background-size: 4px;
  background-repeat: repeat;
  position: absolute;
  opacity: .7;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

#message_card .content_area:after {
  position: absolute;
  display: block;
  content: '';
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(120deg, #222, #444);
  opacity: .6;
}

/* parallax */
#message_card .wrap_parallax {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#message_card .parallax {
  width: 100%;
}

#message_card .inner_parallax {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* content */
#message_card .wrap_lists {
  gap: 12px;
  z-index: 3;
  width: 100%;
  height: auto;
  padding: 64px 0;
  min-height: auto;
  height: fit-content;
  position: relative;
  z-index: 2;
  gap: 20px;
}

#message_card .wrap_lists:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc((100% - 14px));
  height: calc((100% - 14px));
  border: solid 1px rgba(255, 255, 255, .5);
}

#message_card .headline {
  font-size: 18px;
  line-height: 1.5;
}

#message_card .framed {
  background-color: #fff;
  padding: 8px;
  font-size: 12px;
  width: fit-content;
  margin: 8px auto 12px;
}

#message_card .framed_text {
  background-color: #fff;
  color: #333;
  font-size: 18px;
  padding: 6px;
  width: fit-content;
  display: inline-block;
  margin: 4px;
}

#message_card .bigger {
  font-size: 22px;
  margin: 0 2px;
}

#message_card .medium {
  font-size: 16px;
}

#message_card .smaller {
  font-size: 12px;
  margin: 10px 2px 0;
}

#message_card .underline {
  text-decoration: underline;
}

#message_card .headline>strong.green {
  color: #DBF637;
  font-size: 18px;
  background: -webkit-linear-gradient(0deg, #DBF637, #9fffec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


@media screen and (max-width: 950px) {

  #message_card {
    margin: 2.7% auto 20px;
  }

  #message_card:before {
    top: -68px;
    height: 68px;
  }
}


@media screen and (max-width: 750px) {

  /* content */
  #message_card .headline {
    font-size: 16px;
  }
}


@media screen and (max-width: 600px) {

  #message_card .content_area:before {
    background-size: 2px;
  }

  #message_card .wrap_lists {
    gap: 16px;
    padding: 32px 32px 40px;
    min-height: 200px;
  }

  #message_card .headline {
    font-size: 13px;
    text-align: left;
  }

  #message_card .headline br {
    display: none;
  }

  #message_card .bigger {
    font-size: 20px;
  }

  #message_card .headline>strong.green {
    color: #DBF637;
    font-size: 13px;
    background: -webkit-linear-gradient(0deg, #DBF637, #9fffec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  #message_card .framed_text {
    font-size: 13px;
    padding: 6px 4px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > 共通 > 背景画像付き見出し
\*---------------------------------------------------------------*/

#headline_cover {
  border-radius: 4px;
  overflow: hidden;
}

/* content_area */
#headline_cover .content_area {
  position: relative;
  overflow: hidden;
}

#headline_cover .content_area:before {
  display: block;
  content: '';
  background-image: url(../img/overlays/05.png);
  background-size: 4px;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

#headline_cover .content_area:after {
  position: absolute;
  display: block;
  content: '';
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
}

/* parallax */
#headline_cover {
  position: relative;
}

#headline_cover .wrap_parallax {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#headline_cover .parallax {
  width: 100%;
}

#headline_cover .inner_parallax {
  width: 100%;
  height: 600px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* content */
#headline_cover .wrap_lists {
  gap: 12px;
  z-index: 2;
  height: 200px;
  width: 100%;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

#headline_cover .wrap_lists:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc((100% - 16px));
  height: calc((100% - 16px));
  border: solid 1px #919191;
}

#headline_cover .headline {
  font-size: 22px;
}

/* badge */
#headline_cover .worst_badge {
  width: fit-content;
  font-size: 13px;
  padding: 2px 4px;
}

/* subtitle */
#headline_cover .subtitle {
  font-size: 16px;
}

#headline_cover .question_badge {
  background-image: url('../img/design-parts/question_badge.svg');
  width: 140px;
  height: 38px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto;
}

/* background */
#headline_cover .bg_random_01 {
  background-image: url('../img/parallax/headline_faq_07.jpg');
}

/* expanded */
#headline_cover.expand .wrap_lists {
  height: fit-content;
  padding: 40px;
}

#headline_cover.expand .description {
  font-size: 16px;
  margin: 16px 0 0 0;
}


@media screen and (max-width: 950px) {

  #headline_cover {
    width: 106%;
    margin: 0 -3%;
    border-radius: 0px;
  }

  /* content */
  #headline_cover .wrap_lists:after {
    display: none;
  }
}


@media screen and (max-width: 600px) {

  /* content */
  #headline_cover .wrap_lists {
    height: 140px;
    gap: 4px;
  }

  #headline_cover .question_badge {
    width: 120px;
    height: 33px;
  }

  #headline_cover .headline {
    font-size: 15px;
  }

  /* subtitle */
  #headline_cover .subtitle {
    font-size: 11px;
  }

  /* expanded */
  #headline_cover.expand .wrap_lists {
    padding: 40px 24px;
  }

  #headline_cover.expand .description {
    font-size: 13px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > 背景画像付きリスト(注意用)
\*---------------------------------------------------------------*/

/* content_area */
#card .content_area {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

#card .content_area:before {
  display: block;
  content: '';
  background-image: url(../img/overlays/05.png);
  background-size: 4px;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

#card .content_area:after {
  position: absolute;
  display: block;
  content: '';
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
}

/* parallax */
#card {
  position: relative;
}

#card .wrap_parallax {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#card .parallax {
  width: 100%;
}

#card .inner_parallax {
  width: 100%;
  height: 600px;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* content */
#card .wrap_lists {
  gap: 24px;
  z-index: 3;
  padding: 40px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.wrap_lists:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc((100% - 16px));
  height: calc((100% - 16px));
  border: solid 1px #919191;
}

#card .each_list {
  gap: 6px;
  position: relative;
  z-index: 2;
  background-image: url(../img/design-parts/icon_warning.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  padding: 0 0 0 56px;
  background-position: center left;
}

#card .batch {
  font-size: 13px;
  width: fit-content;
  border: solid 1px #fff;
  padding: 4px 6px;
  border-radius: 2px;
}

#card .subject {
  font-size: 15px;
}

#card .border {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .2);
  position: relative;
  z-index: 2;
}

/* backgorund */
#card .bg_random_01 {
  background-image: url('../img/parallax/background_random_01.jpg');
}


@media screen and (max-width: 600px) {

  #card .wrap_lists {
    padding: 20px;
  }

  #card .each_list {
    background-size: 24px;
    padding: 0 0 0 40px;
  }

  #card .batch {
    font-size: 11px;
  }

  #card .subject {
    font-size: 13px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラム > リスト
\*---------------------------------------------------------------*/

.detailed_list {
  gap: 8px;
  background-color: #f7f7f7;
  position: relative;
  padding: 8px;
}

.detailed_list .each_list {
  padding: 0 0 20px 0;
  padding: 20px;
  gap: 20px;
}

.detailed_list .wrap {
  width: 100%;
  gap: 8px;
}

.detailed_list .badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.detailed_list .icon {
  width: 16px;
  flex-shrink: 0;
}

.detailed_list .subject {
  position: relative;
  gap: 8px;
}

.detailed_list .description {
  font-size: 15px;
  color: #666;
}

.detailed_list .heading {
  font-size: 20px;
  line-height: 1.5;
  text-decoration: underline;
}


@media screen and (max-width: 600px) {

  .detailed_list .each_list {
    padding: 16px;
  }

  .detailed_list .wrap {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
  }

  .detailed_list .badge {
    font-size: 12px;
    padding: 6px 8px;
  }

  .detailed_list .subject {
    font-size: 13px;
    width: 100%;
  }

  .detailed_list .description {
    font-size: 13px;
  }

  .detailed_list .heading {
    font-size: 15px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > 共通 > 背景画像付き見出し - 背景画像設定
\*---------------------------------------------------------------*/

/* about us */
#message_card .about_us {
  background-image: url('../img/column/about_us/message_card.jpg');
}

/* abuse */
#message_card .abuse {
  background-image: url('../img/column/abuse/message_card.jpg');
}

/* attention */
#message_card .attention {
  background-image: url('../img/column/attention/message_card.jpg');
}

/* ceo */
#message_card .ceo {
  background-image: url('../img/column/ceo/message_card.jpg');
}

/* damasaretya */
#message_card .damasaretya {
  background-image: url('../img/column/damasaretya/message_card.jpg');
}

/* dorei */
#message_card .dorei {
  background-image: url('../img/column/dorei/message_card.jpg');
}

/* flow */
#message_card .flow {
  background-image: url('../img/column/flow/message_card.webp');
}

/* how_to */
#message_card .how_to {
  background-image: url('../img/column/how_to/message_card.jpg');
}

/* knowhow */
#message_card .knowhow {
  background-image: url('../img/column/knowhow/message_card.jpg');
}

/* lie */
#message_card .lie {
  background-image: url('../img/column/lie/message_card.jpg');
}

/* osusume */
#message_card .osusume {
  background-image: url('../img/column/osusume/message_card.jpg');
}

/* suma_ism */
#message_card .suma_ism {
  background-image: url('../img/column/suma_ism/message_card.jpg');
}

/* taiwa */
#message_card .taiwa {
  background-image: url('../img/column/taiwa/message_card.jpg');
}

/* truth */
#message_card .truth {
  background-image: url('../img/column/truth/message_card.jpg');
}

/* faq */
.each_faq_topic:nth-of-type(1) .inner_parallax {
  background-image: url('../img/parallax/headline_faq_01.jpg');
}

.each_faq_topic:nth-of-type(2) .inner_parallax {
  background-image: url('../img/parallax/headline_faq_02.jpg');
}

.each_faq_topic:nth-of-type(3) .inner_parallax {
  background-image: url('../img/parallax/headline_faq_03.jpg');
}

.each_faq_topic:nth-of-type(4) .inner_parallax {
  background-image: url('../img/parallax/headline_faq_04.jpg');
}

.each_faq_topic:nth-of-type(5) .inner_parallax {
  background-image: url('../img/parallax/headline_faq_05.jpg');
}

.each_faq_topic:nth-of-type(6) .inner_parallax {
  background-image: url('../img/parallax/headline_faq_06.jpg');
}

.each_faq_topic:nth-of-type(7) .inner_parallax {
  background-image: url('../img/parallax/headline_faq_07.jpg');
}



/*---------------------------------------------------------------*\
$コンポーネント > 共通 > 拡大表示アイコン //caseworkページ
\*---------------------------------------------------------------*/

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3%;
  right: 3%;
  cursor: pointer;
}

.example-2 .icon-content {
  position: relative;
}

.example-2 .icon-content .tooltip {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  text-align: center;
  width: 56px;
  color: #333;
  padding: 6px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -36px;
}

.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 16px;
  aspect-ratio: 1/1;
}

.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="spotify"] .filled,
.example-2 .icon-content a[data-social="spotify"]~.tooltip {
  background-color: #fff;
}

.example-2 .icon-content a path {
  transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover path {
  fill: #333 !important;
}


@media screen and (max-width: 600px) {

  .example-2 .icon-content .tooltip {
    font-size: 10px;
  }

  .example-2 .icon-content a {
    width: 38px;
    height: 38px;
  }

  .example-2 .icon-content a svg {
    width: 10px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > 共通 > 事例ギャラリーのモーダル //caseworkページ
\*---------------------------------------------------------------*/

.modal_gallery .modal__overlay {
  background: rgba(0, 0, 0, 0.9) !important;
}

.modal_gallery .modal__container {
  height: 800px;
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 20px;
  flex-direction: column;
}

/* 画像コンテンツの設定 */
.modal_gallery .modal__content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 95%;
  /* 画像の最大横幅を95%に設定 */
  max-height: 95%;
  /* 画像の最大高さを95%に設定 */
}

/* 画像のリサイズ */
.modal_gallery .modal__content img {
  max-width: 100%;
  /* モーダル内で画像が最大でも100%の幅になる */
  max-height: 100%;
  /* モーダル内で画像が最大でも100%の高さになる */
  object-fit: contain;
  /* アスペクト比を保ちながら、コンテンツ内に収める */
}

.modal_gallery .square_btn::before,
.modal_gallery .square_btn::after {
  background-color: #fff;
}

/* 画面サイズが1080px以下の場合の調整 */
@media screen and (max-width: 1080px) {
  .modal_gallery .modal__container {
    height: auto;
    max-height: 90vh;
  }

  .modal_gallery .modal__content {
    max-width: 90%;
    /* 横幅を90%に調整 */
    max-height: 90%;
    /* 高さも90%に調整 */
  }
}



/*---------------------------------------------------------------*\
$グループ > コラム > 注目として囲ったもの /how_toページ
\*---------------------------------------------------------------*/

.group_attention {
  padding: 32px;
  gap: 40px;
  border: solid 2px #9A836C;
}


@media screen and (max-width: 600px) {

  .group_attention {
    padding: 16px 16px 40px 16px;
    gap: 20px;
  }
}



/*---------------------------------------------------------------*\
$書式 > 共通 > 引用
\*---------------------------------------------------------------*/

.quotation {
  gap: 8px;
  position: relative;
  padding: 32px;
}

.quotation:before {
  position: absolute;
  content: '';
  display: block;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 12px;
  background-image: url(../img/design-parts/icon_quote_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.quotation:after {
  position: absolute;
  content: '';
  display: block;
  bottom: 10px;
  right: 10px;
  width: 16px;
  height: 12px;
  background-image: url(../img/design-parts/icon_quote_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}


@media screen and (max-width: 600px) {

  .quotation {
    padding: 28px 24px;
  }
}



/*---------------------------------------------------------------*\
$書式 > 共通 > 画像に対してのキャプション
\*---------------------------------------------------------------*/

.img_w_cap {
  gap: 5px;
}

.img_w_cap .caption {
  font-size: 11px;
  color: #666;
  line-height: 1.4;
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > 画像 + テキスト/インタビュー マルチカラム
\*---------------------------------------------------------------*/

/* common */
.img_texts_columns {
  gap: 6%;
}

/* paragraph */
.img_texts_columns .wrap_paragraph {
  gap: 40px;
  width: 57%;
}

.img_texts_columns .paragraph span {
  display: inline-block;
}

/* images */
.img_texts_columns .image_area {
  width: 37%;
  position: relative;
  gap: 10px;
}

.img_texts_columns .inner {
  position: sticky;
  /* position: static; */
  top: 40px;
  gap: 10px;
}

.img_texts_columns .sticky {
  position: sticky;
  top: 40px;
  gap: 10px;
}

.img_texts_columns .wrap_image {
  gap: 3px;
}

.img_texts_columns .image_upper {
  width: 100%;
}

.img_texts_columns .image_upper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.img_texts_columns .wrap_images {
  gap: 3px;
}

.img_texts_columns .images_middle {
  gap: 3px;
}

.img_texts_columns .image_middle {
  width: calc((100% - 3px)/2);
}

.img_texts_columns .image_middle img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.img_texts_columns .image_bottom {
  width: 100%;
}

.img_texts_columns .image_bottom img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.img_texts_columns .caption {
  font-size: 11px;
  line-height: 1.4;
  color: #666;
}

/* interview */
.wrap_interview {
  gap: 24px;
  width: 57%;
}

.interview .divide {
  margin: 0 2px;
  display: inline;
}

.interviewer,
.interviewee {
  width: 70px;
  display: inline;
}


@media screen and (max-width: 600px) {

  /* common */
  .img_texts_columns {
    flex-direction: column;
    gap: 40px;
  }

  /* reverse */
  .img_texts_columns.reverse {
    flex-direction: column-reverse;
    gap: 40px;
  }

  /* paragraph */
  .img_texts_columns .wrap_paragraph {
    width: 100%;
  }

  /* images */
  .img_texts_columns .image_area {
    width: 100%;
  }

  /* interview */
  .wrap_interview {
    width: 100%;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > 文中画像(小) + キャプション
\*---------------------------------------------------------------*/

.small_img {
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  border-top: solid 1px #eee;
  border-bottom: solid 1px #eee;
}

.small_img .image {
  width: 140px;
  flex-shrink: 1;
}

.small_img .caption {
  font-size: 12px;
}


@media screen and (max-width: 600px) {

  .small_img .image {
    width: 100px;
  }
}



/*---------------------------------------------------------------*\
$コンポーネント > コラムページ > スマホ時のみ表示する文中画像
\*---------------------------------------------------------------*/

.image_pc {
  display: block;
}

img.image_sp {
  display: none;
}


@media screen and (max-width: 600px) {

  .image_pc {
    display: none;
  }

  img.image_sp {
    display: block;
  }
}



/*---------------------------------------------------------------*\
$見出し#0 - セクション
\*---------------------------------------------------------------*/

.headline_section {
  gap: 12px;
}

.headline_section .headline {
  font-size: min(10vw, 105px);
  letter-spacing: -0.06em;
}


@media screen and (max-width: 600px) {

  .headline_section {
    gap: 8px;
  }

  .headline_section .headline {
    font-size: 40px;
  }
}



/*---------------------------------------------------------------*\
$見出し#1
\*---------------------------------------------------------------*/

.headline_01 {
  gap: 16px;
  position: relative;
  border-radius: 4px;
  padding: 26px;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

.headline_01:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc((100% - 8px));
  height: calc((100% - 8px));
  margin: auto;
  border: dashed 1px #fff;
  z-index: 1;
}

.headline_01 .wrap_headline {
  gap: 10px;
}

.headline_01 .icon {
  background-image: url('../img/design-parts/icon_finger.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.headline_01 .headline {
  font-size: 24px;
  line-height: 1.3;
  width: calc((100% - 30px));
}

.headline_01 .headline .small {
  font-size: 14px;
  display: inline-block;
}


/* badge */
.headline_01 .badge {
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 2;
  width: fit-content;
  height: 36px;
  padding: 0 20px;
  background-color: #fff;
  border: solid 1.5px #9A836C;
}

.headline_01 .inner_badge {
  position: relative;
  width: 100%;
  height: 100%;
}

.headline_01 .text_badge {
  color: #9A836C;
}

.headline_01 .triangle {
  position: absolute;
  bottom: -12px;
  left: 12px;
  width: 12px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: linear-gradient(45deg, #fff, #fff);
}


@media screen and (max-width: 850px) {

  .headline_01 .headline {
    font-size: 22px;
  }
}


@media screen and (max-width: 600px) {

  .headline_01 {
    padding: 24px 16px 20px 16px;
  }

  .headline_01 .icon {
    width: 16px;
  }

  .headline_01 .headline {
    font-size: 16px;
  }

  .headline_01 .headline .small {
    font-size: 10px;
  }

  .headline_01 .badge {
    top: -16px;
    left: 0px;
    height: 28px;
  }

  .headline_01 .text_badge {
    font-size: 12px;
  }
}



/*---------------------------------------------------------------*\
$見出し#2
\*---------------------------------------------------------------*/

.headline_02 {
  gap: 16px;
  position: relative;
  border-radius: 4px;
  padding: 26px;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

.headline_02:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc((100% - 8px));
  height: calc((100% - 8px));
  margin: auto;
  border: dashed 1px #fff;
  z-index: 1;
}

.headline_02 .wrap_headline {
  gap: 10px;
}

.headline_02 .icon {
  background-image: url('../img/design-parts/icon_finger.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.headline_02 .headline {
  font-size: 24px;
  line-height: 1.4;
  width: calc((100% - 30px));
}


@media screen and (max-width: 600px) {

  .headline_02 {
    padding: 18px 18px 18px 16px;
  }

  .headline_02 .icon {
    width: 18px;
  }

  .headline_02 .headline {
    font-size: 16px;
  }
}



/*---------------------------------------------------------------*\
$見出し#2 - アイコンなし
\*---------------------------------------------------------------*/

.headline_02_noicon {
  gap: 16px;
  position: relative;
  border-radius: 4px;
  padding: 26px;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

.headline_02_noicon:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc((100% - 8px));
  height: calc((100% - 8px));
  margin: auto;
  border: dashed 1px #fff;
  z-index: 1;
}

.headline_02_noicon .headline {
  font-size: 24px;
  line-height: 1.4;
}


@media screen and (max-width: 600px) {

  .headline_02_noicon {
    padding: 20px;
  }

  .headline_02_noicon .headline {
    font-size: 16px;
  }
}



/*---------------------------------------------------------------*\
$見出し#2 - 注意
\*---------------------------------------------------------------*/

.headline_02_attention {
  gap: 16px;
  position: relative;
  border-radius: 4px;
  padding: 26px;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

.headline_02_attention .badge {
  position: absolute;
  background-image: url(../img/design-parts/badge_danger.svg);
  aspect-ratio: 3.5 / 1;
  background-size: contain;
  width: 180px;
  background-repeat: no-repeat;
  background-position: center;
  top: -28px;
  left: -18px;
  z-index: 2;
}

.headline_02_attention:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc((100% - 8px));
  height: calc((100% - 8px));
  margin: auto;
  border: dashed 1px #fff;
  z-index: 1;
}

.headline_02_attention .headline {
  font-size: 24px;
  line-height: 1.4;
}


@media screen and (max-width: 600px) {

  .headline_02_attention {
    padding: 18px;
  }

  .headline_02_attention .badge {
    width: 160px;
    left: 0;
    right: 0;
    top: -30px;
    margin: auto;
  }

  .headline_02_attention .headline {
    font-size: 16px;
  }
}



/*---------------------------------------------------------------*\
$見出し#2 - Small
\*---------------------------------------------------------------*/

.headline_02_small {
  gap: 16px;
  position: relative;
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

.headline_02_small:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc((100% - 8px));
  height: calc((100% - 8px));
  margin: auto;
  border: dashed 1px #fff;
  z-index: 1;
}

.headline_02_small .headline {
  font-size: 18px;
  line-height: 1.3;
}


@media screen and (max-width: 600px) {

  .headline_02_small {
    padding: 20px;
  }

  .headline_02_small .headline {
    font-size: 15px;
  }
}



/*---------------------------------------------------------------*\
$見出し#2 - Small / Outlined
\*---------------------------------------------------------------*/

.headline_02_small_outlined {
  gap: 16px;
  position: relative;
  border-radius: 4px;
  padding: 24px;
  border: solid 1px #333;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

.headline_02_small_outlined .headline {
  font-size: 18px;
  line-height: 1.3;
}


@media screen and (max-width: 850px) {

  .headline_02_small_outlined {
    padding: 20px;
  }
}


@media screen and (max-width: 600px) {

  .headline_02_small_outlined {
    padding: 16px;
  }

  .headline_02_small_outlined .headline {
    font-size: 14px;
  }
}



/*---------------------------------------------------------------*\
$見出し#3 - 下線
\*---------------------------------------------------------------*/

.headline_03 {
  position: relative;
}

.headline_03 .headline {
  font-size: 20px;
  line-height: 1.3;
  text-decoration: underline;
}


@media screen and (max-width: 600px) {

  .headline_03 .headline {
    font-size: 15px;
  }
}



/*---------------------------------------------------------------*\
$見出し#4 - 引用
\*---------------------------------------------------------------*/

.headline_04 {
  border-left: solid 3px #AF947A;
  padding: 8px 0 8px 20px;
  gap: 4px;
}

.headline_04 .headline {
  font-size: 24px;
  line-height: 1.3;
}

.headline_04 .from {
  font-size: 14px;
}


@media screen and (max-width: 600px) {

  .headline_04 {
    border-left: solid 2px #AF947A;
  }

  .headline_04 .headline {
    font-size: 17px;
  }

  .headline_04 .from {
    font-size: 12px;
  }
}



/*---------------------------------------------------------------*\
$見出し#5 - 章タイトル
\*---------------------------------------------------------------*/

.headline_05 {
  border-left: solid 4px #B4CF13;
  padding: 8px 0 8px 16px;
  gap: 6px;
}

.headline_05 .headline {
  font-size: 36px;
  line-height: 1.3;
}

.headline_05 .chapter {
  font-size: 14px;
}

.headline_05 .headline_en {
  font-size: 10px;
}


@media screen and (max-width: 600px) {

  .headline_05 {
    border-left: solid 3px #AF947A;
  }

  .headline_05 .headline {
    font-size: 22px;
  }

  .headline_05 .chapter {
    font-size: 10px;
  }
}



/*---------------------------------------------------------------*\
$吹き出し見出し#1 - 塗り
\*---------------------------------------------------------------*/

.bubble_headline_single {
  padding: 26px;
  position: relative;
  gap: 24px;
  border-radius: 4px;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 8%);
}

.bubble_white:before {
  position: absolute;
  top: 100%;
  left: 50px;
  transform: skew(-32deg);
  height: 30px;
  width: 20px;
  border-right: 1px solid #333;
  background-color: #fff;
  content: "";
}

.bubble_white:after {
  position: absolute;
  top: 102%;
  left: 28px;
  transform: skew(32deg);
  height: 30px;
  width: 40px;
  background-color: #fff;
  content: "";
}

.bubble_black:before {
  position: absolute;
  top: 100%;
  left: 50px;
  transform: skew(-32deg);
  height: 30px;
  width: 20px;
  background-color: #9A836C;
  content: "";
}

.bubble_black:after {
  position: absolute;
  top: 102%;
  left: 28px;
  transform: skew(32deg);
  height: 30px;
  width: 40px;
  background-color: #fff;
  content: "";
}

.bubble_headline_single h1 {
  font-size: 24px;
}


@media screen and (max-width: 600px) {

  .bubble_headline_single {
    padding: 20px;
  }

  .bubble_headline_single h1 {
    font-size: 15px;
  }

  .bubble_white:before {
    top: 100%;
    left: 22px;
    height: 24px;
    width: 16px;
  }

  .bubble_white:after {
    top: 102%;
    left: 0px;
    height: 26px;
    width: 36px;
  }

  .bubble_black:before {
    top: 100%;
    left: 18px;
    transform: skew(-32deg);
    height: 20px;
    width: 12px;
  }

  .bubble_black:after {
    top: 102%;
    left: 0px;
    height: 22px;
    width: 32px;
  }
}



/*---------------------------------------------------------------*\
$吹き出し見出し#2 - 線
\*---------------------------------------------------------------*/

.bubble_headline {
  padding: 32px;
  position: relative;
  border: solid 1px #333;
  gap: 24px;
  border-radius: 4px;
}

.bubble_headline:before {
  position: absolute;
  top: 100%;
  left: 50px;
  transform: skew(-32deg);
  height: 30px;
  width: 20px;
  border-right: 1px solid #333;
  background: #fff;
  content: "";
}

.bubble_headline:after {
  position: absolute;
  top: 102%;
  left: 28px;
  transform: skew(32deg);
  height: 30px;
  width: 40px;
  background: #fff;
  content: "";
}

.bubble_headline h1 {
  font-size: 24px;
}

.bubble_headline .border {
  height: 40px;
  width: 1px;
  background-color: #333;
}

.bubble_headline .description {
  width: 60%;
}


@media screen and (max-width: 600px) {

  .bubble_headline {
    padding: 18px;
    gap: 16px;
    align-items: flex-start;
    flex-direction: column;
  }

  .bubble_headline .description {
    width: 100%;
  }

  .bubble_headline h1 {
    font-size: 15px;
  }

  .bubble_headline .border {
    width: 100%;
    height: 1px;
  }
}



/*---------------------------------------------------------------*\
$画像 + テキスト/orインタビュー 縦カラム
\*---------------------------------------------------------------*/

/* common */
.img_texts_row {
  gap: 56px;
}

/* paragraph */
.img_texts_row .wrap_paragraph {
  gap: 40px;
}

.img_texts_row .paragraph span {
  display: inline-block;
}

/* images - 横2枚 */
.img_texts_row .image_area.double figure {
  width: calc((100% - 12px)/2);
}

/* images - グリッド */
.img_texts_row .wrap_image {
  gap: 3px;
}

.img_texts_row .wrap_images {
  width: 50%;
  gap: 3px;
}

.img_texts_row .image_upper {
  width: 50%;
}

.img_texts_row .image_upper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.img_texts_row .images_middle {
  gap: 3px;
}

.img_texts_row .image_middle {
  width: calc((100% - 3px)/2);
}

.img_texts_row .image_middle img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.img_texts_row .image_bottom img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

.img_texts_row .caption {
  font-size: 11px;
  line-height: 1.4;
  color: #666;
}


/* interview */
.wrap_interview {
  gap: 24px;
  width: 57%;
}

.interview .divide {
  margin: 0 2px;
  display: inline;
}

.interviewer,
.interviewee {
  width: 70px;
  display: inline;
}


@media screen and (max-width: 600px) {

  /* common */
  .img_texts_row {
    flex-direction: column;
    gap: 40px;
  }

  /* paragraph */
  .img_texts_row .wrap_paragraph {
    width: 100%;
  }

  /* images - 横2枚 */
  .img_texts_row .image_area.double {
    flex-direction: column;
  }

  .img_texts_row .image_area.double figure {
    width: 100%;
  }

  /* interview */
  .wrap_interview {
    width: 100%;
  }
}



/*---------------------------------------------------------------*\
$お問い合わせ
\*---------------------------------------------------------------*/

.contact_area {
  gap: 24px;
  border: solid 1px #333;
  padding: 48px 0;
  border-radius: 4px;
}

.contact_area .headline {
  font-size: 40px;
}

.contact_area .wrap_button {
  gap: 16px;
}

.contact_area .button {
  width: 180px;
  height: 56px;
  font-size: 15px;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
}


@media screen and (max-width: 600px) {

  .contact_area {
    padding: 32px 18px;
  }

  .contact_area .headline {
    font-size: 28px;
  }

  .contact_area .wrap_button {
    width: 100%;
    flex-direction: column;
  }

  .contact_area .button {
    font-size: 14px;
    height: 48px;
    width: 100%;
  }
}



/*---------------------------------------------------------------*\
$画像付きリスト
\*---------------------------------------------------------------*/

.image_list .wrap_list {
  gap: 20px;
}

.image_list .each_list {
  gap: 32px;
  padding: 24px;
}

.image_list .border {
  border-bottom: solid 1px #333;
}

.image_list .content {
  gap: 24px;
  width: calc((100% - 200px - 32px));
}

.image_list .subject {
  font-size: 19px;
}

/* image */
.image_list .badge {
  max-width: 200px;
  width: fit-content;
}


@media screen and (max-width: 600px) {

  .image_list .wrap_list {
    gap: 10px;
  }

  .image_list .each_list {
    gap: 16px;
    flex-direction: column;
  }

  .image_list .content {
    width: 100%;
  }

  .image_list .subject {
    font-size: 15px;
  }

  /* image */
  .image_list .badge {
    max-width: 150px;
    width: fit-content;
  }

}


/*---------------------------------------------------------------*\
$番号付きリスト
\*---------------------------------------------------------------*/

.detail_list .wrap_list {
  gap: 20px;
}

.detail_list .each_list {
  gap: 24px;
  padding: 24px;
}

.detail_list .border {
  border-bottom: solid 1px #333;
}

.detail_list .content {
  gap: 24px;
  width: calc((100% - 200px));
}

.detail_list .subject {
  font-size: 19px;
}

/* image */
.detail_list .badge {
  width: 200px;
}


@media screen and (max-width: 600px) {

  .detail_list .badge {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .detail_list .each_list {
    gap: 16px;
  }

  .detail_list .content {
    width: calc((100% - 56px));
  }

  .detail_list .subject {
    font-size: 16px;
  }
}


/*---------------------------------------------------------------*\
$ページネーション
\*---------------------------------------------------------------*/

.page_nation {
  gap: 80px;
}

/* next */
.page_nation .next {
  border: solid 2px #333;
}

.page_nation .badge {
  width: 200px;
  height: 80px;
  background-color: #333;
}

.page_nation .description {
  text-decoration: underline;
  padding: 0 20px;
  width: calc((100% - 200px));
}

/* page nation */
.page_nation .wrap_pages {
  gap: 10px;
}

.page_nation .each_page {
  border: solid 1px #ddd;
  border-radius: 4px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.page_nation .each_page:hover {
  background-color: #333;
  border: solid 1px #333;
}

.page_nation .each_page>a {
  width: 48px;
  height: 48px;
}

.page_nation .each_page:hover a {
  color: #fff;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.page_nation .curent {
  background-color: #333;
  border: solid 1px #333;
}

.page_nation .curent>a {
  color: #fff;
}


@media screen and (max-width: 600px) {

  .page_nation {
    gap: 40px;
  }

  /* next */
  .page_nation .next {
    width: 94%;
    margin: 0 auto;
  }

  .page_nation .badge {
    height: 64px;
    width: 72px;
    font-size: 11px;
  }

  .page_nation .description {
    width: calc((100% - 72px));
    font-size: 11px;
    padding: 0 12px;
  }

  /* page nation */
  .page_nation .wrap_pages {
    overflow: scroll;
    padding: 0 3%;
  }

  .page_nation .each_page>a {
    font-size: 11px;
    width: 32px;
    height: 32px;
  }
}



/*---------------------------------------------------------------*\
$番号付きリスト表示
\*---------------------------------------------------------------*/

.numbered_list .wrap_list {
  gap: 48px;
}

.numbered_list .each_list {
  gap: 24px;
}

.numbered_list .border {
  border-bottom: solid 1px #333;
}

.numbered_list .content {
  gap: 24px;
  width: calc((100% - 80px));
}

.numbered_list .badge {
  width: 56px;
  height: 56px;
  border: solid 1px #333;
}

.numbered_list .subject,
.numbered_list .subject mark {
  font-size: 19px;
}


@media screen and (max-width: 600px) {

  .numbered_list .badge {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .numbered_list .each_list {
    gap: 16px;
  }

  .numbered_list .content {
    width: calc((100% - 56px));
  }

  .numbered_list .subject,
  .numbered_list .subject mark {
    font-size: 16px;
  }
}



/*---------------------------------------------------------------*\
$番号付きリスト表示 - Small
\*---------------------------------------------------------------*/

.numbered_list_small {
  padding: 40px 24px;
  background-color: #fff;
}

.numbered_list_small .wrap_list {
  gap: 20px;
}

.numbered_list_small .each_list {
  gap: 16px;
}

.numbered_list_small .border {
  border-bottom: solid 1px #ddd;
}

.numbered_list_small .content {
  gap: 24px;
  width: calc((100% - 80px));
}

.numbered_list_small .badge {
  width: 40px;
  height: 40px;
}

.numbered_list_small .subject,
.numbered_list_small .subject mark {
  font-size: 19px;
}


@media screen and (max-width: 600px) {

  .numbered_list_small .badge {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .numbered_list_small .content {
    width: calc((100% - 56px));
  }

  .numbered_list_small .subject,
  .numbered_list_small .subject mark {
    font-size: 13px;
  }

  .numbered_list_small .wrap_list {
    gap: 16px;
  }
}



/*---------------------------------------------------------------*\
$番号付きテキストブロック
\*---------------------------------------------------------------*/

.numbered_block .each_block {
  gap: 24px;
}

.numbered_block .badge {
  width: 56px;
  height: 56px;
  line-height: 1.1;
  background-color: #333;
}

.numbered_block .block_content {
  gap: 40px;
  width: calc((100% - 80px));
}

.numbered_block .badge {
  font-size: 14px;
}

.numbered_block .subject {
  font-size: 19px;
}


@media screen and (max-width: 600px) {

  .numbered_block .badge {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .numbered_block .each_list {
    gap: 16px;
  }

  .numbered_block .content {
    width: calc((100% - 56px));
  }

  .numbered_block .subject {
    font-size: 17px;
  }

  .numbered_block .paragraph {
    font-size: 14px;
  }
}



/*---------------------------------------------------------------*\
$画像 + ナンバー付きリスト
\*---------------------------------------------------------------*/

/* common */
.numbered_list_images_columns {
  gap: 5%;
}

/* list */
.numbered_list_images_columns .wrap_lists {
  width: calc((100% - 5% - 280px));
  gap: 32px;
}

.numbered_list_images_columns .each_list {
  gap: 16px;
}

.numbered_list_images_columns .list_content {
  gap: 12px;
  width: calc((100% - 28px));
}

.numbered_list_images_columns .border {
  border-bottom: solid 1px #ddd;
}

.numbered_list_images_columns .badge {
  margin: 4px 0 0 0;
  font-size: 10px;
  width: 12px;
}

.numbered_list_images_columns .subject {
  font-size: 17px;
}

.numbered_list_images_columns .paragraph {
  font-size: 14px;
  color: #888;
}

/* images */
.numbered_list_images_columns .wrap_images {
  width: 280px;
  position: relative;
}

.numbered_list_images_columns .images {
  gap: 6px;
  position: sticky;
  top: 40px;
}


@media screen and (max-width: 600px) {

  /* list */
  .numbered_list_images_columns .wrap_lists {
    width: calc((100% - 3% - 28%));
    gap: 24px;
  }

  .numbered_list_images_columns .each_list {
    gap: 4px;
    flex-direction: column;
  }

  .numbered_list_images_columns .list_content {
    width: calc((100% - 20px));
  }

  .numbered_list_images_columns .badge {
    scale: .8;
    margin: 0;
  }

  .numbered_list_images_columns .subject {
    font-size: 13px;
  }

  .numbered_list_images_columns .paragraph {
    font-size: 12px;
  }

  /* images */
  .numbered_list_images_columns .wrap_images {
    width: 28%;
  }

  .numbered_list_images_columns .images {
    top: 20px;
  }
}


/*---------------------------------------------------------------*\
$リンクカード
\*---------------------------------------------------------------*/

.linkcards {
  gap: 5%;
}

.linkcards .each_card {
  padding: 20px;
  border: solid 1px #333;
  gap: 16px;
  width: 47.5%;
  box-shadow: 8px 8px 0px 0px #333;
}

.linkcards .thumbnail {
  width: 140px;
  height: 140px;
  background-color: #eee;
}

.linkcards .main {
  gap: 8px;
  width: calc((100% - 156px));
}

.linkcards .headline {
  font-size: 26px;
}

.linkcards .description {
  font-size: 13px;
  color: #888;
}

.linkcards .badge {
  font-size: 12px;
  background-color: #DBF637;
  height: 20px;
  width: fit-content;
  padding: 0 10px;
}


@media screen and (max-width: 1200px) {

  .linkcards {
    flex-direction: column;
    gap: 40px;
  }

  .linkcards .each_card {
    width: 100%;
  }
}


@media screen and (max-width: 600px) {

  .linkcards .thumbnail {
    width: 110px;
    height: 110px;
  }

  .linkcards .main {
    width: calc((100% - 116px));
  }

  .linkcards .headline {
    font-size: 19px;
  }

  .linkcards .description {
    font-size: 12px;
  }

  .linkcards .badge {
    font-size: 10px;
  }

  .linkcards .each_card {
    padding: 12px;
    box-shadow: 6px 6px 0px 0px #333;
  }
}



/*---------------------------------------------------------------*\
$FAQスタイルリスト
\*---------------------------------------------------------------*/

.faq_style_list {
  padding: 48px;
}

.faq_style_list .wrap_list {
  gap: 64px;
}

.faq_style_list .each_list {
  gap: 16px;
}

.faq_style_list .wrap_headline {
  gap: 10px;
}

.faq_style_list .badge {
  width: 60px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.faq_style_list .badge_tatemae {
  background-image: url('../img/design-parts/badge_tatemae.svg');
}

.faq_style_list .badge_honne {
  background-image: url('../img/design-parts/badge_honne.svg');
}

.faq_style_list .headline {
  font-size: 18px;
  width: calc((100% - 70px));
  margin: 5px 0 0 0;
}

.faq_style_list .contexts {
  gap: 16px;
}

.faq_style_list .paragraph {
  font-size: 16px;
}

.faq_style_list .wrap_paragraph {
  gap: 8px;
}

.faq_style_list .border {
  border-bottom: dashed 1px #333;
}


@media screen and (max-width: 600px) {

  .faq_style_list {
    padding: 20px;
  }

  .faq_style_list .headline {
    font-size: 14px;
  }

  .faq_style_list .paragraph {
    font-size: 13px;
  }

  .faq_style_list .contexts {
    gap: 4px;
  }
}



/*---------------------------------------------------------------*\
$特徴リスト
\*---------------------------------------------------------------*/

.feature_list {
  gap: 56px;
}

.feature_list .wrap_headline {
  padding: 28px 20px 20px 20px;
  gap: 8px;
  position: relative;
}

.feature_list .icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.feature_list .icon_good {
  background-image: url('../img/design-parts/icon_good.svg');
}

.feature_list .icon_bad {
  background-image: url('../img/design-parts/icon_bad.svg');
}

.feature_list .headline {
  font-size: 18px;
  width: calc((100% - 32px));
}

.feature_list .contexts {
  padding: 32px;
  gap: 8px;
}

.feature_list .paragraph {
  font-size: 16px;
}

/* badge */

.feature_list .badge {
  position: absolute;
  top: -14px;
  left: -10px;
  z-index: 2;
  width: fit-content;
  height: 30px;
  padding: 0 10px;
  background-color: #fff;
}

.feature_list .badge_black {
  border: solid 1px #222;
}

.feature_list .badge_brown {
  border: solid 1px #9A836C;
}

.feature_list .inner_badge {
  position: relative;
  width: 100%;
  height: 100%;
}

.feature_list .text_badge {
  font-size: 12px;
}

.feature_list .badge_brown .text_badge {
  color: #9A836C;
}

.feature_list .triangle {
  position: absolute;
  bottom: -10px;
  left: 12px;
  width: 10px;
  aspect-ratio: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: linear-gradient(45deg, #fff, #fff);
}


@media screen and (max-width: 600px) {

  .feature_list .wrap_headline {
    padding: 26px 20px 20px 20px;
  }

  .feature_list .headline {
    width: calc((100% - 28px));
    font-size: 16px;
  }

  .feature_list .contexts {
    padding: 24px;
    gap: 4px;
  }

  .feature_list .paragraph {
    font-size: 13px;
  }

  .feature_list .icon {
    width: 20px;
    height: 20px;
  }

  /* badge */

  .feature_list .badge {
    font-size: 11px;
    left: -4px;
  }

  .feature_list .text_badge {
    font-size: 11px;
  }

}



/*---------------------------------------------------------------*\
$特徴リスト
\*---------------------------------------------------------------*/

.comments {
  gap: 24px;
}

.comments .content {
  gap: 48px;
}

.comments .each_comment {
  position: relative;
  background: #E9F0D4;
  padding: 40px;
  width: calc((100% - 48px)/2);
  font-size: 16px;
}

.comments .icon_quote_left {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 12px;
  background-image: url('../img/design-parts/icon_quote_left.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.comments .icon_quote_right {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 16px;
  height: 12px;
  background-image: url('../img/design-parts/icon_quote_right.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.comments .each_comment:before {
  position: absolute;
  top: 100%;
  left: 50px;
  transform: skew(-32deg);
  height: 30px;
  width: 20px;
  background-color: #E9F0D4;
  content: "";
}

.comments .each_comment:after {
  position: absolute;
  top: 100%;
  left: 28px;
  transform: skew(32deg);
  height: 30px;
  width: 40px;
  background-color: #fff;
  content: "";
}


@media screen and (max-width: 860px) {

  .comments .content {
    gap: 24px;
  }

  .comments .each_comment {
    width: calc((100% - 24px) / 2);
  }
}


@media screen and (max-width: 600px) {

  .comments .content {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .comments .each_comment {
    font-size: 13px;
    width: 100%;
    padding: 28px 24px;
  }

  .comments .each_comment:nth-of-type(odd):before {
    right: 60px;
    left: auto;
  }

  .comments .each_comment:nth-of-type(odd):after {
    right: 62px;
    left: auto;
  }
}



/*---------------------------------------------------------------*\
$メンバープロフィール
\*---------------------------------------------------------------*/

.profile {
  gap: 40px;
}

.profile .main {
  gap: 40px;
  width: calc((100% - 390px - 40px));
}

.profile .thumbnail {
  width: 390px;
  aspect-ratio: 1/1;
}

.profile .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile .wrap_name {
  position: relative;
  gap: 6px;
}

.profile .name {
  font-size: 36px;
}

.profile .title {
  font-size: 15px;
}

.profile .detail {
  gap: 40px;
  width: 100%;
}

.profile .info {
  width: 100%;
  padding: 16px;
  gap: 12px;
  background: #fafafa;
}

.profile .info dl {
  gap: 16px;
}

.profile .info dt {
  width: 140px;
  height: 32px;
  background: #fff;
  font-size: 12px;
}

.profile .info dd {
  font-size: 14px;
  width: calc((100% - 140px - 16px));
  gap: 12px;
}

.profile .info .word * {
  font-size: 14px;
}

.profile .info .by {
  font-size: 12px;
}

.profile .border {
  border-bottom: solid 1px #eee;
}


@media screen and (max-width: 950px) {

  .profile {
    flex-direction: column;
  }

  .profile .main {
    width: 100%;
  }

  .profile .thumbnail {
    width: 100%;
  }
}


@media screen and (max-width: 600px) {

  .profile {
    flex-direction: column;
  }

  .profile .main {
    gap: 24px;
    width: 100%;
    margin-left: auto;
  }

  .profile .thumbnail {
    aspect-ratio: 2/1;
  }

  .profile .info dt {
    font-size: 10px;
    width: 72px;
    height: 18px;
  }

  .profile .info dd {
    font-size: 12px;
    width: calc((100% - 72px - 16px));
  }

  .profile .info .word * {
    font-size: 12px;
  }

  .profile .info .by {
    font-size: 10px;
  }

  .profile .name {
    font-size: 20px;
  }

  .profile .title {
    font-size: 10px;
    margin: 2px 0 0 0;
  }

  .profile .detail {
    width: 100%;
  }
}



/*---------------------------------------------------------------*\
$自己紹介
\*---------------------------------------------------------------*/

.bio {
  gap: 32px;
}

.bio .description {
  gap: 32px;
}

.bio .paragraph {
  font-size: 16px;
}

@media screen and (max-width: 600px) {

  .bio .paragraph {
    font-size: 13px;
  }
}



/*---------------------------------------------------------------*\
$座右の銘
\*---------------------------------------------------------------*/

.words {
  background-image: url('../img/column/ceo/portraito_kido_blur.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  border-radius: 6px;
  height: 600px;
  overflow: hidden;
  border: solid 1px #ddd;
}

/* .words:after {
  position: absolute;
  display: block;
  content: '';
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 0;
} */

.words .word_cards {
  position: relative;
  z-index: 2;
}

.words .each_word {
  gap: 16px;
  height: 500px;
}

.words .member {
  font-size: 12px;
  margin: 24px 0 0 0;
  width: 72px;
  height: 72px;
  background-color: #fff;
  border: solid 1px #333;
  border-radius: 2px;
}

.words .wrap_quote {
  gap: 8px;
  width: calc((100% - 66px));
}

.words .quote {
  font-size: 15px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-feature-settings: initial;
}

.words .by {
  font-size: 13px;
  position: relative;
  color: #888;
  gap: 6px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-feature-settings: initial;
}

.words .splide__slide {
  width: 180px !important;
}


@media screen and (max-width: 600px) {

  .words .quote {
    font-size: 14px;
  }

  .words .splide__slide {
    width: 150px;
  }

  .words .by {
    font-size: 10px;
  }
}



/*---------------------------------------------------------------*\
$サブメッセージ
\*---------------------------------------------------------------*/

.sub_message {
  background-image: url('../img/firstview/firstview_01_sp.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 5px;
  padding: 56px;
  gap: 10%;
  overflow: hidden;
}

.sub_message:before {
  display: block;
  content: '';
  background-image: url(../img/overlays/05.png);
  background-size: 4px;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.sub_message:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  z-index: 1;
}

.sub_message .main {
  gap: 24px;
  position: relative;
  z-index: 2;

}


@media screen and (max-width: 600px) {

  .sub_message {
    padding: 32px;
  }

  .sub_message .paragraph {
    font-size: 14px;
  }
}



/*---------------------------------------------------------------*\
$プロフィール一覧
\*---------------------------------------------------------------*/

.members {
  width: 100%;
  margin: 0 auto;
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.members .each_member {
  gap: 16px;
  padding: 8px 8px 24px 8px;
  border: solid 1px #eee;
}

.members .thumbnail {
  width: 100%;
  background-color: #eee;
}

.members .wrap_name {
  gap: 8px;
}

.members .name {
  font-size: 19px;
}

.members .title {
  font-size: 14px;
}


@media screen and (max-width: 600px) {

  .members {
    gap: 10px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .members .name {
    font-size: 15px;
  }

  .members .title {
    font-size: 11px;
  }
}



/*---------------------------------------------------------------*\
$情報要約リスト
\*---------------------------------------------------------------*/

.info_list {
  position: relative;
  gap: 56px;
  margin: 32px 0 0 0;
}

.info_list .headline {
  padding: 16px 0 16px 16px;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
}

.info_list .each_info dt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 150px;
  text-align: center;
  border-bottom: solid 1px #333;
  padding-bottom: 56px;
}

.info_list .each_info dt>time {
  font-size: 15px;
}

.info_list .each_info dd {
  width: calc(100% - 150px);
  border-bottom: solid 1px rgba(0, 0, 0, .1);
  padding: 0 0 56px 5%;
  gap: 24px;
}

.info_list .wrap_list {
  gap: 8px;
}

.info_list .each_list {
  gap: 8px;
}

.info_list .inner_list {
  gap: 10px;
}

.info_list .subject_small {
  font-size: 13px;
  color: #666;
}

.info_list .divider {
  border-bottom: dashed 1px #ddd;
  margin: 16px 0;
}

.info_list .thumbnail {
  width: 220px;
  aspect-ratio: 1/1;
}

.info_list .thumbnail img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}


@media screen and (max-width: 950px) {}


@media screen and (max-width: 600px) {

  .info_list {
    gap: 24px;
    margin: 16px 0 0 0;
  }

  .info_list .headline {
    padding: 10px 0 10px 16px;
  }

  .info_list .each_info dt {
    width: 90px;
    padding-bottom: 24px;
    font-size: 12px;
  }

  .info_list .each_info dt>time {
    font-size: 12px;
  }

  .info_list .each_info dd {
    width: calc(100% - 90px);
    padding: 0 0px 24px 5%;
    font-size: 12px;
  }

  .info_list .each_list span {
    font-size: 12px;
  }
}


/*---------------------------------------------------------------*\
$その他実績リスト
\*---------------------------------------------------------------*/

.lecture {
  border: solid 1px #333;
  padding: 56px 5%;
  box-shadow: 0px 6px 0px 0px #333;
}

.lecture .each_info dt {
  font-size: 13px !important;
}


@media screen and (max-width: 600px) {

  .lecture {
    padding: 24px 16px;
  }
}



/*---------------------------------------------------------------*\
$library
\*---------------------------------------------------------------*/

.library {
  position: relative;
  gap: 56px;
}

.library .each_content {
  gap: 5%;
}

.library .subject {
  font-size: 22px;
}

.library .description {
  font-size: 14px;
}

.library .history {
  gap: 8px;
}

.library .each_history {
  gap: 6px;
}

.library .detail {
  font-size: 13px;
}

.library .thumbnail {
  width: 40%;
  aspect-ratio: 1/1;
}

.library .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library .border {
  border-bottom: solid 1px #444;
}


@media screen and (max-width: 600px) {

  .library .each_content {
    flex-direction: column-reverse;
  }

  .library .thumbnail {
    width: 100%;
  }

  .library .subject {
    font-size: 17px;
  }

  .library .detail {
    font-size: 13px;
    width: 90%;
    ;
  }

  .library .info {
    gap: 40px;
  }

  .library .description {
    font-size: 13px;
  }

  .library .each_content {
    gap: 32px;
  }

  .library .history {
    gap: 20px;
    width: 90%;
  }
}



/*---------------------------------------------------------------*\
$記事一覧
\*---------------------------------------------------------------*/

.articles {
  position: relative;
}

/* page info */
.articles .page_info {
  gap: 20px;
  padding: 0 0 32px 0;
  border-bottom: solid 1px #eee;
}

.articles .current_category {
  font-size: 28px;
}

.articles .category_description {
  font-feature-settings: "palt" !important;
}

/* articles */
.articles .wrap_articles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin: 32px 0 0 0;
}

.articles .wrap_articles_wide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.articles .wrap_categories {
  gap: 4px;
}

.articles .category {
  font-size: 13px;
  width: fit-content;
  padding: 6px 10px;
}

.articles .each_article {
  gap: 16px;
  position: relative;
}

.articles .thumbnail {
  width: 100%;
  background-color: #eee;
}

.articles .wrap_info {
  gap: 8px;
  height: 100%;
  padding: 0 0 8px 0;
}

.articles .subject>br {
  display: none;
}

.articles .place {
  font-size: 14px;
}

.articles .place>br {
  display: none;
}

/* pagenav */
.articles .wp-pagenavi {
  /* グリッド全体に広げる */
  grid-column: 1 / -1;
  margin: 56px auto 0;
}


@media screen and (max-width: 1200px) {

  /* articles */
  .articles .wrap_articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .articles .wrap_articles_wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media screen and (max-width: 950px) {

  /* articles */
  .articles .wrap_articles_wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media screen and (max-width: 600px) {

  /* page info */
  .articles .page_info {
    gap: 12px;
  }

  .articles .current_category {
    font-size: 19px;
  }

  .articles .category_description {
    font-size: 11px;
  }

  /* articles */
  .articles .wrap_articles {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .articles .wrap_articles_wide {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .articles .subject {
    font-size: 15px;
  }

  .articles .place {
    font-size: 12px;
  }

  .articles .category {
    font-size: 10px;
  }
}



/*---------------------------------------------------------------*\
$メディア一覧
\*---------------------------------------------------------------*/

.articles_media {
  position: relative;
}

.articles_media .wrap_articles {
  gap: 56px;
}

.articles_media .current_category {
  font-size: 32px;
  padding: 0 0 32px 0;
}

.articles_media .each_content {
  gap: 5%;
  position: relative;
}

.articles_media .thumbnail {
  width: 360px;
  aspect-ratio: 1/1;
}

.articles_media .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articles_media .info {
  width: calc((100% - 5% - 360px));
}

.articles_media .info>div {
  gap: 8px;
}

.articles_media .subject {
  font-size: 22px;
}

.articles_media .description {
  font-size: 10px;
}

.articles_media .more {
  font-size: 13px;
}

.articles_media .detail {
  font-size: 14px;
}

.articles_media .border {
  border-bottom: solid 1px #eee;
}

/* event */
.articles_media .wrap_detail {
  gap: 16px;
  margin: 16px 0 0 0;
}

.articles_media .wrap_detail li {
  gap: 6px;
}

.articles_media .wrap_detail li * {
  font-size: 12px;
}

.articles_media .event_status {
  font-size: 12px;
  padding: 6px 10px;
  width: fit-content;
}

.articles_media .detail {
  font-size: 12px;
}


@media screen and (max-width: 600px) {

  .articles_media .current_category {
    font-size: 20px;
    padding: 0 0 24px 0;
  }

  .articles_media .each_content {
    gap: 24px;
  }

  .articles_media .thumbnail {
    width: 140px;
    margin-left: auto;
  }

  .articles_media .wrap_articles {
    gap: 24px;
  }

  .articles_media .info {
    width: calc((100% - 24px - 140px));
  }

  .articles_media .wrap_detail li {
    gap: 4px;
  }

  .articles_media .wrap_detail li * {
    font-size: 10px;
  }

  .articles_media .subject {
    font-size: 12px;
  }

  .articles_media .detail {
    font-size: 10px;
  }

  /* event */
  .articles_media .event_status {
    font-size: 10px;
  }
}



/*---------------------------------------------------------------*\
$関連記事
\*---------------------------------------------------------------*/

#related_posts {
  margin: 100px 0 0;
  width: 100%;
  overflow: hidden;
  padding: 100px 0 0 0;
  border-top: solid 1px #eee;
  gap: 64px;
}

#related_posts .fukidashi {
  background-image: url(../img/common/hukidashi_more.svg);
}


@media screen and (max-width: 600px) {

  #related_posts {
    padding: 40px 0 0;
    gap: 32px;
  }
}



/*---------------------------------------------------------------*\
$カルーセル
\*---------------------------------------------------------------*/

.carousel .splide__track {
  overflow: visible !important;
}

.carousel .splide__slide {
  width: 350px;
}

.carousel .splide__slide>a {
  gap: 16px;
}

.carousel .info {
  gap: 8px;
}

.carousel .thumbnail {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.carousel .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* description or category */
.carousel .description {
  font-size: 13px;
}

.carousel .wrap_categories {
  gap: 8px;
}

.carousel .category {
  font-size: 13px;
  border: solid 1px #333;
  border-radius: 4px;
  width: fit-content;
  padding: 4px 10px;
}


@media screen and (max-width: 600px) {

  .carousel .splide__slide {
    width: 260px;
  }

  .carousel .subject {
    font-size: 13px;
  }

  /* description or category */
  .carousel .description {
    font-size: 11px;
  }

  .carousel .wrap_categories {
    gap: 4px;
  }

  .carousel .category {
    font-size: 10px;
    padding: 4px 10px 3px;
  }
}



/*---------------------------------------------------------------*\
FAQ
\*---------------------------------------------------------------*/

/* accordion */
.accordion {
  position: relative;
  border-bottom: solid 1px #eee;
}

.accordion:last-child {
  border-bottom: none;
}

.accordion .each_faq {
  position: relative;
  list-style: none;
  overflow: hidden;
  border-bottom: solid 1px #ddd;
}

.accordion .each_faq:last-child {
  border-bottom: none;
}

.accordion .toggle {
  padding: 32px;
  position: relative;
  cursor: pointer;
}

/* question */
.accordion .question {
  width: calc((100% - 36px));
  gap: 16px;
}

.accordion .question .subject {
  font-size: 17px;
  width: calc((100% - 56px));
}

.accordion .question .badge {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

/* answer */
.accordion .answer {
  display: none;
  position: relative;
  padding: 32px;
}

.accordion .answer:before {
  position: absolute;
  top: 0;
  width: calc((100% - 64px));
  margin: 0 auto;
  display: block;
  content: '';
  border-top: solid 1px #eee;
}

.accordion .answer>div {
  gap: 16px;
}

.accordion .answer .context {
  gap: 24px;
  width: calc((100% - 64px));
}

.accordion .answer .paragraph {
  font-size: 16px;
}

.accordion .answer .badge {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

/* icon */
.accordion li .accordion_icon,
.accordion li .accordion_icon span {
  display: inline-block;
  transition: all .1s;
  box-sizing: border-box;
}

.accordion li .accordion_icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.accordion li .accordion_icon span {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #333;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.accordion li .accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.accordion li .accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.accordion li .accordion_icon.active span:nth-of-type(1) {
  display: none;
}

.accordion li .accordion_icon.active span:nth-of-type(2) {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}



@media screen and (max-width: 600px) {

  /* common */
  .faq {
    padding: 8px;
    gap: 8px;
  }

  /* accordion */
  .accordion .toggle {
    padding: 12px;
  }

  /* question */
  .accordion .question {
    gap: 12px;
  }

  .accordion .question .subject {
    font-size: 13px;
    width: calc((100% - 48px));
  }

  /* icon */
  .accordion li .accordion_icon {
    width: 10px;
    height: 10px;
  }

  .accordion li .accordion_icon span {
    width: 10px;
  }

  /* question */
  .accordion .question .badge {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  /* answer */
  .accordion .answer {
    padding: 16px;
  }

  .accordion .answer .badge {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .accordion .answer .paragraph {
    font-size: 14px;
  }

  .accordion .answer>div {
    gap: 10px;
  }
}



/*---------------------------------------------------------------*\
$credit
\*---------------------------------------------------------------*/

.credit {
  position: relative;
  /* width: 100%; */
}

.credit:before {
  opacity: .8;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../img/overlays/01.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 2px;
  position: absolute;
  background-blend-mode: multiply;
  top: 0;
  right: 0;
  z-index: 1;
}

.credit:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url('../img/top/bg_fv.png');
  background-size: cover;
  background-position: center;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

.credit .wrap_info {
  padding: 64px 0;
  width: 100%;
  background: rgba(0, 0, 0, .65);
  position: relative;
  z-index: 2;
  margin: 0px auto 0;
  gap: 80px;
}

.credit .headline {
  border-bottom: solid 1px #555;
  padding-bottom: 10px;
  margin-bottom: 16px;
  font-size: 13px;
}

.credit .info {
  gap: 18px;
}

.credit .info dl {
  gap: 6px;
}

.credit .info dt,
.credit .info dd {
  font-size: 13px;
}

.credit .info dt {
  width: 120px;
}

.credit .info dd {
  width: calc((100% - 120px));
}


@media screen and (max-width: 750px) {

  .credit .wrap_info {
    flex-direction: column;
  }

  .credit .wrap_info article {
    width: 80%;
    margin: 0 auto;
  }
}



/*---------------------------------------------------------------*\
$profile
\*---------------------------------------------------------------*/

#profile {
  width: 100%;
  padding: 100px 0 0;
  position: relative;
  z-index: 1;
  margin: 150px 0;
}

#profile:before {
  display: block;
  content: '';
  width: calc((100% - 0));
  height: calc((100% - 300px));
  background-color: #222;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 0px;
  z-index: -1;
}

#profile:after {
  display: block;
  content: '';
  width: calc((100% - 0));
  height: 300px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}


/* iframe */
#profile iframe {
  width: 100%;
  height: 25vw;
  border-radius: 6px;
  overflow: hidden;
  margin: 24px 0 0 0;
}


#profile .wrap_headline {
  gap: 4px;
}

#profile .headline {
  font-size: min(10vw, 105px);
  letter-spacing: -0.06em;
}


/* gallery */
#profile .gallery {
  width: 100%;
}


/* tab */
#profile .tab_area {
  cursor: pointer;
  max-width: 1440px;
  width: 93%;
  border-radius: 12px;
  margin: 48px auto;
  gap: 1px;
}

#profile .each_tab {
  width: calc((100% - 3px)/4);
  background-color: #333;
  height: 64px;
  font-size: 15px;
}

#profile .each_tab:nth-child(n+2) {
  border-left: 1px solid #333;
}

#profile .each_tab.active {
  background-color: #AFC913;
  color: #fff;
  position: relative;
}

#profile .each_tab.active:before {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid #AFC913;
  border-bottom: 0;
  position: absolute;
  bottom: -10px;
  right: 0;
  left: 0;
  margin: auto;
}


/* slider */
#profile .panel {
  display: none;
  width: 100%;
  margin: 0 auto;
}

#profile .panel.active {
  display: block;
}

#profile .panel-ul {
  margin: 0 auto;
  max-width: 150px;
}

#profile .panel .each {
  border-top: solid 6px #fff;
  border-right: solid 6px #fff;
  border-bottom: solid 6px #fff;
}

#profile .slick-track {
  display: flex !important;
}

/* slider - slick */
#profile .slick-slide {
  width: fit-content !important;
  height: 412px !important;
}

#profile .slick-slide>img {
  width: auto !important;
  height: 400px !important;
  cursor: pointer;
}

#profile .prev-arrow {
  width: 64px;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 2;
}

#profile .next-arrow {
  width: 64px;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 2;
}

#profile .each {
  position: relative;
}

/* data */
#profile .data {
  gap: 88px;
  width: 93%;
  max-width: 1440px;
  margin: 64px 0 0;
  border-radius: 10px;
  padding: 48px 56px;
}

#profile .data .wrap_detail {
  gap: 6px;
  margin: 24px 0 0 0;
}

#profile .data .info {
  width: calc((100% - 88px)/2);
}

#profile .data dl {
  gap: 16px;
}

#profile .data .subject {
  font-size: 17px;
}

#profile .data .subject:after {
  display: block;
  content: '';
  border-bottom: solid 1px #ddd;
  padding: 0 0 16px 0;
}

#profile .data dt {
  width: 100px;
  height: 30px;
  font-size: 13px;
  background-color: #f1f1f1;
}

#profile .data dd {
  width: calc((100% - 100px - 16px));
  font-size: 13px;
}

#profile .data dd br {
  display: none;
}

#profile .data .wrap_right {
  gap: 24px;
  width: calc((100% - 16px)/2);
}

#profile .data .credit_info,
#profile .data .floor_plan {
  width: 100%;
}

#profile .data .visual_area {
  background-color: #f1f1f1;
  height: fit-content;
  padding: 16px;
  border-radius: 6px;
  margin: 24px 0 0 0;
  position: relative;
}


@media screen and (min-width: 1440px) {

  /* iframe */
  #profile iframe {
    height: 320px;
  }
}


@media screen and (max-width: 1080px) {

  /* tab */
  #profile .tab_area {
    width: 100%;
  }
}


@media screen and (max-width: 860px) {

  /* iframe */
  #profile iframe {
    height: 320px;
  }

  /* data */
  #profile .data {
    flex-direction: column;
    gap: 24px;
  }

  #profile .data .info {
    width: 100%;
  }

  #profile .data .wrap_right {
    width: 100%;
  }

  #profile .data .subject {
    font-size: 15px;
  }

  #profile .data .each_tab {
    font-size: 12px;
  }
}


@media screen and (max-width: 600px) {

  #profile {
    margin: 80px 0;
    padding: 40px 0 0;
  }

  #profile:before {
    height: calc((100% - 180px));
  }

  #profile:after {
    height: 180px;
  }

  #profile .headline {
    font-size: 42px;
  }

  /* data */
  #profile .data {
    padding: 20px;
    margin: 32px 0 0;
  }

  #profile .data .subject {
    font-size: 12px;
  }

  #profile .data dt {
    width: 80px;
    height: 26px;
    font-size: 11px;
  }

  #profile .data dd {
    width: calc((100% - 80px - 16px));
    font-size: 11px;
  }

  #profile .data .subject:after {
    padding: 0 0 8px 0;
  }

  #profile .data .visual_area {
    padding: 6px;
    margin: 12px 0 0 0;
  }

  #profile iframe {
    margin: 12px 0 0 0;
  }

  #profile .data .wrap_detail {
    margin: 12px 0 0 0;
  }

  /* tab */
  #profile .tab_area {
    margin: 24px auto;
  }

  #profile .each_tab {
    height: 40px;
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
  }

  #profile .each_tab.active:before {
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 6px solid #AFC913;
    bottom: -6px;
  }

  /* slider - slick */
  #profile .slick-slide {
    height: calc((60vw + 8px)) !important;
  }

  #profile .slick-slide>img {
    /* height: 360px !important; */
    height: 60vw !important;
  }

  #profile .panel .each {
    border-top: solid 4px #fff;
    border-right: solid 4px #FFF;
    border-bottom: solid 4px #fff;
  }

  #profile .next-arrow,
  #profile .prev-arrow {
    width: 44px;
  }

  #profile .next-arrow {
    right: 2%;
  }

  #profile .prev-arrow {
    left: 2%;
  }
}



/*---------------------------------------------------------------*\
$関連記事導線
\*---------------------------------------------------------------*/

.related_content {
  gap: 32px;
}

.related_content .wrap_headlines {
  gap: 12px;
}

.related_content .related_content {
  gap: 32px;
}

.related_content .wrap_column {
  gap: 28px;
}

.related_content .each_content {
  width: calc((100% - 60px)/3);
}

.related_content .each_content a {
  width: 100%;
  height: 100%;
  gap: 12px;
}

.related_content .info {
  gap: 8px;
  width: 100%;
}

.related_content .thumbnail {
  background: #444;
  width: 100%;
  aspect-ratio: 1.5/1;
}

.related_content .description {
  font-size: 12px;
}

.related_content .read {
  font-size: 13px;
}


@media screen and (max-width: 600px) {

  .related_content .related_content {
    gap: 16px;
  }

  .related_content .wrap_column {
    gap: 16px;
  }

  .related_content .each_content {
    width: 100%;
  }

  .related_content .each_content a {
    flex-direction: row-reverse;
    align-items: center;
  }

  .related_content .description {
    font-size: 10px;
  }

  .related_content .read {
    font-size: 10px;
  }
}



/*---------------------------------------------------------------*\
$hoge
\*---------------------------------------------------------------*/

#hoge {}


@media screen and (max-width: 1200px) {}

@media screen and (max-width: 950px) {}

@media screen and (max-width: 850px) {}

@media screen and (max-width: 600px) {}