@charset 'UTF-8';

/* 【共通パーツ】サブタイトル01ーsp
  ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-sub-ttl01 {
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  color: var(--color03);
}

.common-sub-ttl01-emphasis {
  color: var(--color02);
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】サブタイトル01ーtb
    ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .common-sub-ttl01 {
    font-size: 32px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】サブタイトル01ーpc
    ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .common-sub-ttl01 {
    font-size: 24px;
  }
}

/* 【共通パーツ】ボタン01ーsp
  ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-btn {
}

.common-btn__link {
  font-size: 15px;
  font-weight: 500;
  width: 250px;
  height: 60px;
  color: var(--color03);
  border: solid 2px var(--color01);
  border-radius: 49.5px;
  padding: 4.5px 4.5px 4.5px 21px;
  position: relative;
  transition: color 0.5s ease;
  overflow: hidden;
  z-index: 1;
}

.common-btn__link::before {
  content: "";
  position: absolute;
  top: -2px; /* ボーダーの厚さ分上にずらす */
  left: -2px; /* ボーダーの厚さ分左にずらす */
  width: calc(100% + 4px); /* 親要素の幅 + 左右ボーダーの合計 */
  height: calc(100% + 4px); /* 親要素の高さ + 上下ボーダーの合計 */
  background: var(--color01);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

/* hover時にスライドイン：左から右へ */
.common-btn__link:hover::before {
  transform: scaleX(1);
  transform-origin: left; /* そのまま左起点で広がる */
}

.common-btn__link:hover {
  color: #fff;
}

/* テキストやアイコンなどは前面に */
.common-btn__link > * {
  position: relative;
  z-index: 2;
}



.common-btn__arrow {
  position: absolute;
  top: 50%;
  right: 4.5px;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  display: inline-block;
}

/* 通常の黒 or 青い矢印 */
.common-btn__arrow::before,
.common-btn__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.5s ease;
}

/* 通常時の矢印（黒や濃い色） */
.common-btn__arrow::before {
  background-image: url(../../images/common/btn-b-r.png);
  opacity: 1;
  z-index: 1;
}

/* ホバー時の白矢印（初期非表示） */
.common-btn__arrow::after {
  background-image: url(../../images/common/btn-b-r-w.png);
  opacity: 0;
  z-index: 2;
}

/* ホバーで白アイコンをフェードイン、通常をフェードアウト */
.common-btn__link:hover .common-btn__arrow::after {
  opacity: 1;
}

.common-btn__link:hover .common-btn__arrow::before {
  opacity: 0;
}


@media screen and (min-width: 577px) {
  /* 【共通パーツ】ボタン01ーtb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .common-btn__link {
    font-size: 24px;
    width: 420px;
    height: 100px;
    padding: 9px 9px 9px 43px;
  }

  .common-btn__arrow {
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】ボタン01ーpc
      ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .common-btn__link {
    font-size: 15px;
    width: 320px;
    height: 72px;
    padding: 8px 8px 8px 42px;
  }

  .common-btn__arrow {
    width: 56px;
    height: 56px;
  }
}

/* 【共通パーツ】ボタン02ーsp
  ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-btn__link.common-btn__link--02 {
  background-color: var(--color04);
  border: none;
}

/* 【共通パーツ】ボタン03ーsp
  ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  
.common-btn__link.common-btn__link--03 {
  color: var(--color04);
  border: solid 3px var(--color04);
}

.common-btn__link--03 .common-btn__arrow {
  background-image: url(../../images/common/btn-or-r.png);
  background: var(--color15);
}

.common-btn__link.common-btn__link--03:hover {
  color: var(--color15);
}

.common-btn__link.common-btn__link--03:hover .common-btn__arrow{
  background: var(--color15);
  border-radius: 30px;
}

.common-btn__link--03 .common-btn__arrow::before {
  background-image: url(../../images/common/btn-or-r.png);
  opacity: 1;
  z-index: 1;
}

/* ホバー時の白矢印（初期非表示） */
.common-btn__link--03 .common-btn__arrow::after {
  background-image: url(../../images/common/btn-or-w.png);
  opacity: 0;
  z-index: 2;
}


.common-btn--03 .common-btn__link::before{
  background: var(--color04);
}

/* 【共通パーツ】ボタン04ーsp
  ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-btn__link.common-btn__link--04 {
  color: var(--color16);
  border: solid 3px var(--color16);
}

.common-btn__link--04 .common-btn__arrow {
  background-image: url(../../images/common/btn-bl-r.png);
  border-radius: 30px;
}



.common-btn__link.common-btn__link--04:hover {
  color: var(--color04);
}

.common-btn__link.common-btn__link--04:hover .common-btn__arrow{
  background: var(--color15);
  border-radius: 30px;
}

.common-btn__link--04 .common-btn__arrow::before {
  background-image: url(../../images/common/btn-bl-r.png);
  opacity: 1;
  z-index: 1;
}

/* ホバー時の白矢印（初期非表示） */
.common-btn__link--04 .common-btn__arrow::after {
  background-image: url(../../images/common/btn-bl-w.png);
  opacity: 0;
  z-index: 2;
}


.common-btn--04 .common-btn__link::before{
  background: var(--color16);
}




/* 【共通パーツ】ボタン05ーsp
  ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.common-btn__link.common-btn__link--05 {
  color: var(--color04);
  border: solid 3px var(--color04);
}

.common-btn__link--05 .common-btn__arrow {
  background-image: url(../../images/common/btn-bl2-r.png);
  border-radius: 30px;
}



.common-btn__link.common-btn__link--05:hover {
  color: var(--color16);
}

.common-btn__link.common-btn__link--05:hover .common-btn__arrow{
  background: var(--color15);
  border-radius: 30px;
}

.common-btn__link--05 .common-btn__arrow::before {
  background-image: url(../../images/common/btn-bl-w.png);
  opacity: 1;
  z-index: 1;
}

/* ホバー時の白矢印（初期非表示） */
.common-btn__link--05 .common-btn__arrow::after {
  background-image: url(../../images/common/btn-bl-r.png);
  opacity: 0;
  z-index: 2;
}


.common-btn--05 .common-btn__link::before{
  background: var(--color04);
}

/* 【共通パーツ】カラム01-sp
      ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.column01__list {
}

.column01__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 32px;
  margin: 0 0 80px;
}

.column01__list .column01__item:last-of-type {
  margin: 0;
}

.column01__img {
  width: 100%;
  border-radius: 16px;
}

.column01__txt-box {
  width: 100%;
}

.column01__ttl {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin: 0 0 32px;
}

.column01__sub-ttl {
  margin: 0 0 38px;
}

.column01__txt {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0 0 40px;
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】カラム01-tb
          ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .column01__item {
    row-gap: 64px;
    margin: 0 0 160px;
  }

  .column01__ttl {
    font-size: 48px;
    margin: 0 0 64px;
  }

  .column01__sub-ttl {
    margin: 0 0 40px;
  }

  .column01__txt {
    font-size: 27px;
    margin: 0 0 80px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】カラム01-pc
            ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .column01__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    row-gap: 64px;
    margin: 0 0 87px;
  }

  .column01__img {
    width: calc(100% - 43% - 32px);
  }

  .column01__txt-box {
    width: calc(100% - 57% - 32px);
    padding: 100px 0 0;
  }

  .column01__ttl {
    font-size: 38px;
    margin: 0 0 40px;
  }

  .column01__txt {
    font-size: 18px;
    margin: 0 0 64px;
  }
}

/* 【共通パーツ】 【共通パーツ】固定ページタイトル&画像-sp
      ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.page-top {
  background-color: var(--color09);
  padding: 100px 0 60px;
}

.page-top__box {
}

.page-top__ttl {
}

.page-top__ttl-list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 10px;
}

.page-top__ttl-item {
  font-size: 28px;
  font-weight: 700;
  color: var(--color03);
}

.page-top__ttl-item.page-top__ttl-item--color {
  color: var(--color02);
}

.page-top__sub-ttl {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color03);
}

.page-top__text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin: 20px 0 0;
}

.page-top__img-box {
  margin: 0 0 100px;
}

.page-top__img {
  width: 100%;
  height: auto;
  aspect-ratio: 75 / 56;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--color02);
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】 【共通パーツ】固定ページタイトル&画像-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .page-top {
    padding: 135px 0 120px;
  }

  .page-top__ttl-list {
    margin: 0 0 20px;
  }

  .page-top__ttl-item {
    font-size: 56px;
  }

  .page-top__sub-ttl {
    display: inline-block;
    font-size: 28px;
  }

  .page-top__text {
    font-size: 27px;
    margin: 40px 0 0;
  }

  .page-top__img-box {
    margin: 0 0 200px;
  }

  .page-top__img {
    width: 100%;
    height: auto;
    aspect-ratio: 15 / 7;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】 【共通パーツ】固定ページタイトル&画像-pc
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

  .page-top {
    padding: 153px 0 120px;
    margin: 0 0 120px;
  }

  .page-top__ttl-list {
    margin: 0 0 21px;
    position: relative;
  }

  .page-top__ttl-item {
    padding: 0 54px 0 0;
    position: relative;
  }

  .page-top__ttl-item::before {
    display: inline-block;
    content: "";
    width: 20px;
    height: 10px;
    background-color: var(--color03);
    position: absolute;
    top: 50%;
    right: 17px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }

  .page-top__ttl-list .page-top__ttl-item:last-of-type::before {
    display: none;
  }

  .page-top__sub-ttl {
    font-size: 24px;
  }

  .page-top__text {
    font-size: 18px;
    margin: 58px 0 80px;
  }

  .page-top__img-box {
    margin: 0;
  }
  .circle {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid var(--color02);
  }
}

@media screen and (min-width: 1025px) {
  .page-top__ttl-list::before {
    display: inline-block;
    content: "";
    width: 60px;
    height: 38px;
    background-image: url(../../images/common/ttl-accent-pc.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: -100px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

/* 【共通パーツ】ページ外枠-sp
      ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.page-outer {
  margin: 100px 0;
}

.page-outer__cont-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 80px;
}

.page-outer__main {
  width: 100%;
}

.page-outer__side {
  width: 100%;
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】ページ外枠-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .page-outer {
    margin: 200px 0;
  }

  .page-outer__cont-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 160px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】ページ外枠-pc
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .page-outer {
    margin: 0 0 120px;
  }

  .page-outer__cont-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    row-gap: 0;
    -webkit-column-gap: 60px;
    -moz-column-gap: 60px;
    column-gap: 60px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .page-outer__main {
    width: calc(calc(100% - 24% - 30px));
  }
}

/* 【共通パーツ】サイドバー-sp
      ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.page__side {
  width: 100%;
  border-top: solid 2px var(--color06);
}

.page__side-list {
}

.page__side-item {
  border-bottom: solid 2px var(--color06);
}

.page__side-link {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 0 16px 21px;
  position: relative;
}

.page__side-link::before {
  display: inline-block;
  content: "";
  width: 7.5px;
  height: 22.5px;
  background-image: url(../../images/common/company-toc-dot-sp.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.page__side-link:hover {
  opacity: 0.8;
}

.page__side-current {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color02);
  padding: 16px 0 16px 21px;
  position: relative;
}

.page__side-current::before {
  display: inline-block;
  content: "";
  width: 7.5px;
  height: 22.5px;
  background-image: url(../../images/common/company-toc-circle-sp.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】サイドバー-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

  .page__side-link {
    font-size: 28px;
    padding: 32px 0 32px 42px;
  }

  .page__side-link::before {
    width: 15px;
    height: 45px;
  }

  .page__side-current {
    font-size: 28px;
    padding: 32px 0 32px 42px;
  }

  .page__side-current::before {
    width: 15px;
    height: 45px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】サイドバー-pc
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .page__side {
    width: calc(calc(100% - 76% - 30px));
    border-top: none;
  }

  .page__side-item {
    border-bottom: none;
    margin: 0 0 26px;
  }

  .page__side-link {
    font-size: 20px;
    padding: 0 0 0 33px;
  }

  .page__side-link::before {
    width: 9px;
    height: 9px;
    background-image: url(../../images/common/company-toc-dot-pc.png);
    left: 4px;
  }

  .page__side-current {
    font-size: 20px;
    padding: 0 0 0 33px;
  }

  .page__side-current::before {
    width: 17px;
    height: 17px;
    background-image: url(../../images/common/company-toc-circle-pc.png);
  }
}

/* 【共通パーツ】タブリスト、タブコンテンツ-sp
      ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/* タブリスト */
.tab {
  background-color: var(--color09);
  padding: 0 0 60px;
}

.tab__cont {
  border-top: solid 1px var(--color10);
  border-bottom: solid 1px var(--color10);
  padding: 24px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 24px;
}

.tab-ttl {
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: var(--color03);
  width: 100%;
}

.tab-list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  gap: 8px;
}

.tab-item {
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--color03);
  padding: 7px 11px;
  border: solid 1px var(--color03);
  border-radius: 32px;
  /* background-color: var(--color09); */
  width: auto;
}
.tab-item:hover{
background: var(--color03);
color: var(--color04);
}

.tab-item.is-active {
  color: var(--color04);
  background-color: var(--color03);
}

/* タブコンテンツ */
.tab-cont {
  display: none;
}

.tab-cont.is-active {
  display: block;
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】タブリスト、タブコンテンツ-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /* タブリスト */
  .tab {
    padding: 0 0 120px;
  }

  .tab__cont {
    padding: 48px 0;
    row-gap: 48px;
  }

  .tab-ttl {
    font-size: 24px;
  }

  .tab-list {
    gap: 16px;
  }

  .tab-item {
    font-size: 24px;
    padding: 20px 24px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】タブリスト、タブコンテンツ-pc
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .tab__cont {
    padding: 40px 0;
    row-gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }

  .tab-ttl {
    font-size: 18px;
    width: calc(100% - 80% - 50px);
  }

  .tab-list {
    width: calc(100% - 20% - 50px);
  }

  .tab-item {
    font-size: 18px;
    letter-spacing: 0.01em;
    color: var(--color03);
    padding: 12px 18px;
    border: solid 2px var(--color03);
    border-radius: 32px;
    background-color: var(--color09);
    width: auto;
  }
}

/* 【共通パーツ】横並び記事一覧-sp
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.column-article__list-wrap {
}

.column-article__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 47px;
  margin: 0 0 80px;
}

.column-article__item {
  width: 100%;
}

.column-article__link {
  display: inline-block;
  width: 100%;
}

.column-article__link:hover {
  opacity: 0.8;
}

.column-article__img {
  width: 100%;
  height: auto;
  aspect-ratio: 142 / 85;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin: 0 0 20px;
  transition: transform 0.3s ease;
}
.column-article__img:hover {
  transform: scale(1.05);
}

.column-article__data {
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--color03);
  margin: 0 0 12px;
}

.column-article__ttl {
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color03);
  margin: 0 0 16px;
}

.column-article__txt {
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.column-article__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--color03);
  padding: 4px 7px;
  border: solid 1px var(--color03);
  border-radius: 50px;
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】横並び記事一覧-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .column-article__list {
    row-gap: 95px;
    margin: 0 0 160px;
  }

  .column-article__img {
    margin: 0 0 40px;
  }

  .column-article__data {
    font-size: 28px;
    margin: 0 0 24px;
  }

  .column-article__ttl {
    font-size: 28px;
    margin: 0 0 32px;
  }

  .column-article__txt {
    font-size: 27px;
  }

  .column-article__tag {
    font-size: 24px;
    padding: 14px 16px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】横並び記事一覧-pc
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .column-article__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-column-gap: 48px;
    -moz-column-gap: 48px;
    column-gap: 48px;
    row-gap: 56px;
    margin: 0 0 120px;
  }

  .column-article__item {
    width: calc(calc(100% - 96px) / 3);
  }

/* 画像コンテナのスタイル */
.column-article__img-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 211px;
}

/* 実際の画像のスタイル */
.column-article__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform-origin: center center;
  aspect-ratio: 92 / 55;
  margin: 0 0 32px;
}

/* ホバー時のアニメーションは、引き続き画像をターゲットに */
.column-article__link:hover .column-article__img {
  transform: scale(1.1);
}

.column-article__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

  .column-article__data {
    font-size: 18px;
    margin: 0 0 20px;
  }

  .column-article__ttl {
    font-size: 20px;
    margin: 20px 0 24px;
  }

  .column-article__txt {
    font-size: 16px;
  }

  .column-article__tag {
    font-size: 18px;
    padding: 12px 16px;
    padding: 7px 8px;
    border: solid 2px var(--color03);
  }
}

/* 【共通パーツ】ページネーション-sp
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.pagination {
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.prev,
.next {
  display: none;
}

.page-numbers {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  color: var(--color13);
  padding: 0 0 10px;
}

.page-numbers.current {
  color: var(--color3);
  border-bottom: solid 2px var(--color03);
}

.page-numbers.dots {
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】ページネーション-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】ページネーション-pc
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
}

/* 【共通パーツ】コンテンツテキスト・ボタン-sp
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.cont-txt-button {
}

.cont-txt-button__ttl {
  font-size: 21px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: 700;
  color: var(--color04);
  margin: 0 0 23px;
}

.cont-txt-button__eg {
  display: block;
  font-size: 15px;
  font-weight: 500;
  padding: 0 0 0 23px;
  margin: 0 0 32px;
  position: relative;
}

.cont-txt-button__eg::before {
  display: inline-block;
  content: "";
  width: 13px;
  height: 13px;
  background-image: url(../../images/common/cont-ttl-accent.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.cont-txt-button__txt {
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.7;
  font-weight: 700;
  color: var(--color04);
  margin: 0 0 50px;
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】コンテンツテキスト・ボタン-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .cont-txt-button__ttl {
    font-size: 42px;
    margin: 0 0 46px;
    letter-spacing: 0.01em;
  }

  .cont-txt-button__eg {
    font-size: 30px;
    padding: 0 0 0 46px;
    margin: 0 0 64px;
  }

  .cont-txt-button__eg::before {
    width: 26px;
    height: 26px;
  }

  .cont-txt-button__txt {
    font-size: 27px;
    margin: 0 0 100px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】コンテンツテキスト・ボタン-pc
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .cont-txt-button__ttl {
    font-size: 30px;
    margin: 0 0 46px;
    letter-spacing: 0.01em;
  }

  .cont-txt-button__eg {
    font-size: 20px;
    padding: 0 0 0 22px;
    margin: 0 0 35px;
  }

  .cont-txt-button__eg::before {
    width: 18px;
    height: 18px;
  }

  .cont-txt-button__txt {
    font-size: 18px;
    margin: 0 0 48px;
  }
}

/* 【共通パーツ】テキストイメージリング-sp
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.txt-img-ring {
  background-color: var(--color16);
  padding: 110px 0 80px;
}

.txt-img-ring__box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.txt-img-ring__left {
  width: 100%;
}

.txt-img-ring__right {
  width: 100%;
  margin: 0 0 28px;
}

.txt-img-ring__img {
  width: 100%;
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】テキストイメージリング-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .txt-img-ring {
    padding: 220px 0;
  }

  .txt-img-ring__right {
    margin: 0 0 56px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】テキストイメージリング-pc
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .txt-img-ring {
    padding: 120px 0;
  }

  .txt-img-ring .inner-cont {
  }

  .txt-img-ring__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-column-gap: 110px;
    -moz-column-gap: 110px;
    column-gap: 110px;
  }

  .txt-img-ring__left {
    width: calc(50% - 55px);
  }

  .txt-img-ring__right {
    width: calc(50% - 55px);
    position: relative;
    z-index: 1;
  }

  .txt-img-ring__right::before {
    display: inline-block;
    content: "";
    width: 128px;
    height: 128px;
    background-image: url(../../images/guide/guide-ring07.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -70px;
    right: -70px;
    z-index: -1;
  }

  .txt-img-ring__right::after {
    display: inline-block;
    content: "";
    width: 182px;
    height: 182px;
    background-image: url(../../images/guide/guide-ring08.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -80px;
    left: -80px;
    z-index: -1;
  }
}

/* 【共通パーツ】アコーディオン1-sp
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.accordion {
}

.accordion__ttl {
  font-size: 15px;
  font-weight: 700;
  color: var(--color04);
  position: relative;
  padding: 0 0 32px 23px;
  border-bottom: solid 2px var(--color04);
}

.accordion__ttl::before {
  display: inline-block;
  content: "";
  width: 13px;
  height: 13px;
  background-image: url(../../images/common/ttl-accent-ring-w.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 2px;
  left: 0;
}

.accordion__list {
}

.accordion__item {
  padding: 24px 0;
  border-bottom: solid 2px var(--color04);
}

.accordion__item-ttl {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6;
  color: var(--color04);
  position: relative;
  padding: 0 3em 0 0;
}

.accordion__item-ttl:hover {
  pointer-events: painted;
}

.accordion__item-ttl::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../../images/common/accordion1-plus.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.accordion__item-ttl.is-active {
  margin: 0 0 24px;
}

.accordion__item-ttl.is-active::before {
  width: 20px;
  height: 4px;
  background-image: url(../../images/common/accordion1-minus.png);
}

.accordion__item-txt {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--color04);
  display: none;
}

.accordion__item-txt.is-active {
  display: block;
}

@media screen and (min-width: 577px) {
  /* 【共通パーツ】アコーディオン1-tb
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .accordion__ttl {
    font-size: 30px;
    padding: 0 0 64px 64px;
  }

  .accordion__ttl::before {
    width: 26px;
    height: 26px;
    top: 2px;
  }

  .accordion__item {
    padding: 48px 0;
  }

  .accordion__item-ttl {
    font-size: 30px;
  }

  .accordion__item-ttl::before {
    width: 40px;
    height: 40px;
  }

  .accordion__item-ttl.is-active {
    margin: 0 0 48px;
  }

  .accordion__item-ttl.is-active::before {
    width: 40px;
    height: 4px;
  }

  .accordion__item-txt {
    font-size: 27px;
  }
}

@media screen and (min-width: 769px) {
  /* 【共通パーツ】アコーディオン1
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .accordion__ttl {
    font-size: 18px;
    padding: 0 0 38px 32px;
  }

  .accordion__ttl::before {
    width: 18px;
    height: 18px;
  }

  .accordion__item {
    padding: 33px 0;
  }

  .accordion__item-ttl {
    font-size: 20px;
  }

  .accordion__item-ttl::before {
    width: 18px;
    height: 18px;
  }

  .accordion__item-ttl.is-active::before {
    width: 18px;
    height: 2px;
  }

  .accordion__item-ttl.is-active {
    margin: 0 0 36px;
  }

  .accordion__item-txt {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* top-リクルート-sp
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-recruit {
  margin: 0 0 120px;
}

.top-recruit__img-box {
  position: relative;
}

.top-recruit__img {
  width: 100%;
}

.top-recruit__btn {
  position: absolute;
  bottom: 35px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media screen and (min-width: 577px) {
  /* top-リクルート-tb
  ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .top-recruit {
    margin: 0 0 200px;
  }
}

@media screen and (min-width: 769px) {
  /* top-リクルート-pc
  ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  .top-recruit {
    margin: 0 0 138px;
  }

  .top-recruit .inner-cont {
    padding: 0;
  }
  .top-recruit__btn {
    bottom: 25px;
  }
}

/* ××××××××××××××××××××××××××××××××××
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media screen and (min-width: 577px) {
  /* ××××××××××××××××××××××××××××××××××
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
}

@media screen and (min-width: 769px) {
  /* ××××××××××××××××××××××××××××××××××
        ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
}
