@charset "UTF-8";
/* Foundation
 * 変数、関数、mixinを定義
 * サイト全体のデフォルトスタイルを管理
======================================*/
/****** 変数定義 ******/
@font-face {
  font-family: "Headland One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/HeadlandOne-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
}
/*--------------------------------
 *  カスタムプロパティ
--------------------------------*/
:root {
  --swl-pad_container: 20px!important;
  --container_size: 1120px!important;
  --article_size: 900px!important;
  --corp_color_group: #289056;
  --corp_color_holdings: #62D9DB;
  --corp_color_estate: #EC6899;
  --corp_color_building: #E67D31;
  --corp_color_house: #DF4A4B;
  --corp_color_aki: #2FBA92;
}

/****** mixin定義 ******/
/****** 関数定義 ******/
/****** ベースとなるスタイル ******/
a {
  color: unset;
}

@media screen and (min-width: 601px) {
  a[href^="tel:"] {
    text-decoration: none;
    pointer-events: none;
  }
}

address {
  font-style: unset;
}

figure {
  line-height: 1;
}

html {
  visibility: hidden;
}

/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** ヘッダー ******/
/*--------------------------------
 *  基本ヘッダー
--------------------------------*/
.l-header {
  padding: 30px 40px;
  font-size: 16px;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .l-header {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .l-header {
    padding: 10px;
  }
}

.l-header__inner {
  padding: 12px 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  pointer-events: auto;
}
@media screen and (max-width: 960px) {
  .l-header__inner {
    padding: 10px;
  }
}

.l-header .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  min-height: 0;
}
@media screen and (max-width: 600px) {
  .l-header .__horiz {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.l-header__col {
  min-width: 0;
}
.l-header__col.--logo {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.l-header__col.--menu {
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 960px) {
  .l-header__col.--menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.l-header__col.--tel {
  -ms-flex-preferred-size: fit-content;
      flex-basis: fit-content;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 960px) {
  .l-header__col.--tel {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

/*------ 状態｜スクロール -------*/
[data-scrolled=true] .l-header__inner {
  background-color: rgba(255, 255, 255, 0.8);
}

/*------ ホーム -------*/
#body_wrap .l-header {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  background-color: transparent;
  pointer-events: none;
}

/*--------------------------------
 *  固定ヘッダー
--------------------------------*/
#fix_header.l-fixHeader {
  height: var(--swl-headerH, 0px) !important;
  z-index: -100 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/****** フッター ******/
.l-footer__body {
  padding-top: 60px;
  padding-bottom: 40px;
  color: #ffffff;
  background-image: url("../img/texture/02.svg"), url("../img/texture/01.png");
  background-repeat: no-repeat, repeat;
  background-size: auto 600px;
  background-position: right calc(50% + 350px) bottom -90px, 0% 0%;
}
@media screen and (max-width: 600px) {
  .l-footer__body {
    background-size: auto 320px;
    background-position: left -70px top -100px, 0% 0%;
  }
}

.l-footer__body .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .l-footer__body .__horiz {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__body .c-siteLogo img {
  height: 54px;
}
@media screen and (max-width: 600px) {
  .l-footer__body .c-siteLogo img {
    height: 40px;
  }
}

.l-footer__body small {
  display: block;
  margin-top: 0.5em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .l-footer__body small {
    margin-top: 30px;
    text-align: center;
  }
}

/****** コンテンツエリア ******/
#body_wrap {
  padding-top: 0;
}

#body_wrap::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: block;
  background-image: url("../img/texture/03.jpg");
  background-size: cover;
}

#body_wrap.error404,
#body_wrap.search {
  padding-top: var(--swl-headerH, 0px);
}

#body_wrap {
  --current_corp_color: var(--color_main);
}
#body_wrap.category-group, #body_wrap.page-id-194 {
  --current_corp_color: var(--corp_color_group);
}
#body_wrap.category-holdings, #body_wrap.page-id-174 {
  --current_corp_color: var(--corp_color_holdings);
}
#body_wrap.category-estate {
  --current_corp_color: var(--corp_color_estate);
}
#body_wrap.category-building {
  --current_corp_color: var(--corp_color_building);
}
#body_wrap.category-house {
  --current_corp_color: var(--corp_color_house);
}
#body_wrap.category-aki, #body_wrap.page-id-176 {
  --current_corp_color: var(--corp_color_aki);
}

.l-content {
  margin-bottom: 0 !important;
  padding-bottom: 120px;
}

.l-content:not(.--home)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #F6F7FA;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-template-custom-template-headless #content {
  padding-top: 0;
}

/****** セクション ******/
/*--------------------------------
 *  ホーム
--------------------------------*/
/*------ キービジュアル -------*/
.l-sect-home-keyVisual {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 0;
  height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  overflow: hidden;
}

.l-sect-home-keyVisual .__bgImage {
  position: absolute;
  left: 37.5%;
  top: -22%;
  z-index: -1;
  width: auto;
  height: 110%;
  aspect-ratio: 1;
}
@media screen and (max-width: 600px) {
  .l-sect-home-keyVisual .__bgImage {
    top: -12.74%;
    height: 73.46%;
  }
}
.l-sect-home-keyVisual .__bgImage .__photo {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-sect-home-keyVisual .__line-1 {
  position: absolute;
  top: -19.4565217391%;
  left: -21.7391304348%;
  z-index: 0;
  display: block;
  width: 57.6086956522%;
  height: auto;
}
.l-sect-home-keyVisual .__line-1 path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  -webkit-animation: line-draw 1s ease-out 2s forwards;
          animation: line-draw 1s ease-out 2s forwards;
}

.l-sect-home-keyVisual .__line-2 {
  position: absolute;
  top: -10.8695652174%;
  left: -10.8695652174%;
  z-index: 0;
  display: block;
  width: 121.7391304348%;
  height: auto;
}
.l-sect-home-keyVisual .__line-2 path {
  stroke-dasharray: 4000;
  stroke-dashoffset: 4000;
  -webkit-animation: line-draw 1.25s ease-out 2s forwards;
          animation: line-draw 1.25s ease-out 2s forwards;
}

.l-sect-home-keyVisual .__line-3 {
  position: absolute;
  top: 46.847826087%;
  left: 47.7173913043%;
  z-index: 1;
  display: block;
  width: 45.652173913%;
  height: auto;
}
.l-sect-home-keyVisual .__line-3 path {
  stroke-dasharray: 1500;
  stroke-dashoffset: -1500;
  -webkit-animation: line-draw-reverse 0.75s ease-out 2.5s forwards;
          animation: line-draw-reverse 0.75s ease-out 2.5s forwards;
}

_::-webkit-full-page-media path, _:future path, :root .l-sect-home-keyVisual .__line-3 path {
  stroke-dashoffset: 1500;
  -webkit-animation: line-draw 1s ease-out 3.5s forwards;
          animation: line-draw 1s ease-out 3.5s forwards;
}

.l-sect-home-keyVisual .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
  padding-bottom: 20px;
}

.l-sect-home-keyVisual__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-sect-home-keyVisual__text .__heroCopy {
  position: relative;
  z-index: 0;
  display: block;
  width: 50vh;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .l-sect-home-keyVisual__text .__heroCopy {
    width: 39.73vh;
  }
}

.l-sect-home-keyVisual__text .__desc {
  margin-top: 30px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .l-sect-home-keyVisual__text .__desc {
    margin-top: 20px;
    font-size: 12px;
  }
}

.l-sect-home-keyVisual__text .c-btn {
  margin-top: 30px;
}
@media screen and (max-width: 600px) {
  .l-sect-home-keyVisual__text .c-btn {
    margin-top: 20px;
  }
}

.l-sect-home-keyVisual .c-scrollDown {
  position: absolute;
  right: 40px;
  bottom: 4.8vh;
}
@media screen and (max-width: 600px) {
  .l-sect-home-keyVisual .c-scrollDown {
    right: 3.75vh;
    bottom: 20px;
  }
}

/*------ グループ企業一覧 -------*/
.l-sect-home-group {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 0;
  padding-top: 80px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .l-sect-home-group {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.l-sect-home-group .__circle {
  position: absolute;
  top: 0;
  right: calc(50% + clamp(10px, 20.6896551724vw, 240px));
  z-index: -1;
  display: block;
  aspect-ratio: 1;
  width: clamp(10px, 55.1724137931vw, 640px);
  height: auto;
  -webkit-animation: rotateAnimation 20s linear infinite;
          animation: rotateAnimation 20s linear infinite;
}
@media screen and (max-width: 600px) {
  .l-sect-home-group .__circle {
    right: 50%;
    width: 106.66vw;
  }
}

@-webkit-keyframes rotateAnimation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateAnimation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/*------ 創業からの軌跡 -------*/
.l-sect-home-history {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 80px;
  padding-bottom: 120px;
  background-image: url("../img/texture/05.png"), url("../img/texture/06.png"), url("../img/texture/01.png");
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, cover;
  background-position: top center, bottom center, 0% 0%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .l-sect-home-history {
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: 640px auto, 640px auto, cover;
  }
}

.l-sect-home-history .c-heading-sect {
  color: #fff;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .l-sect-home-history .c-heading-sect {
    margin-bottom: 40px;
  }
}

/*------ お知らせ -------*/
.l-sect-home-news {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  padding-top: 80px;
}
@media screen and (max-width: 600px) {
  .l-sect-home-news {
    margin-top: 0;
    padding-top: 60px;
  }
}

.l-sect-home-news .c-btn {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 600px) {
  .l-sect-home-news .c-btn {
    margin-top: 30px;
  }
}

/* SVGライン描画アニメーション */
@-webkit-keyframes line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes line-draw {
  to {
    stroke-dashoffset: 0;
  }
}
/* SVGライン逆方向描画アニメーション（__line-3用） */
@-webkit-keyframes line-draw-reverse {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes line-draw-reverse {
  to {
    stroke-dashoffset: 0;
  }
}
/****** Call To Action ******/
.l-cta {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #EEF0F5;
}
@media screen and (max-width: 600px) {
  .l-cta {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

/****** ページタイトル ******/
.l-topTitleArea {
  margin: 0;
  overflow: hidden;
  padding: 0;
  padding-top: calc(var(--swl-headerH, 0px) - 30px);
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: auto;
  background-color: transparent;
  background-image: unset;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .l-topTitleArea {
    padding-top: calc(var(--swl-headerH, 0px) - 20px);
  }
}
@media screen and (max-width: 600px) {
  .l-topTitleArea {
    padding-top: calc(var(--swl-headerH, 0px) - 10px);
  }
}

.l-topTitleArea__deco {
  position: absolute;
  bottom: 0;
  right: -250px;
  z-index: -1;
  display: block;
  width: 760px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .l-topTitleArea__deco {
    display: none;
  }
}
.l-topTitleArea__deco path {
  fill: var(--current_corp_color, #002337);
}

.l-topTitleArea__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  min-height: 150px;
}
@media screen and (max-width: 960px) {
  .l-topTitleArea__body {
    min-height: 100px;
  }
}

.l-topTitleArea .c-pageTitle {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color_text);
  text-align: start;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .l-topTitleArea .c-pageTitle {
    font-size: 18px;
  }
}
.l-topTitleArea .c-pageTitle::after {
  content: none;
}

.l-topTitleArea .c-pageTitle__subTitle {
  margin: 0;
  margin-bottom: 0.5em;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color_text);
}
@media screen and (max-width: 960px) {
  .l-topTitleArea .c-pageTitle__subTitle {
    font-size: 12px;
  }
}

/****** ローディング画面 ******/
#loading-screen {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  background-image: url("../img/texture/14.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
#loading-screen .loading-content {
  text-align: center;
  color: white;
}
#loading-screen .loading-animation {
  width: 850px;
  max-width: 100%;
  height: auto;
  -webkit-transform-origin: center;
          transform-origin: center;
}
#loading-screen .loading-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#loading-screen .loading-message {
  font-size: 16px;
  margin: 0;
  opacity: 0.8;
  font-weight: 300;
  letter-spacing: 0.1em;
}
#loading-screen.maintenance-mode .loading-message::after {
  content: " (メンテナンスモード)";
  font-size: 12px;
  opacity: 0.6;
  display: block;
  margin-top: 10px;
}
#loading-screen .loading-spinner {
  width: 100px;
  height: 100px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-top: 6px solid white;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media screen and (max-width: 600px) {
  #loading-screen .loading-animation {
    width: 100%;
    height: auto;
  }
  #loading-screen .loading-message {
    font-size: 14px;
  }
  #loading-screen .loading-spinner {
    width: 70px;
    height: 70px;
    border-width: 4px;
  }
}
/* Object > Component
 * 接頭辞：c-
 * 再利用できるパターンとして最小単位のモジュールを定義
======================================*/
/****** 見出し/タイトル ******/
/*--------------------------------
 *  セクション
--------------------------------*/
.c-heading-sect {
  margin-bottom: 60px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .c-heading-sect {
    margin-bottom: 40px;
    font-size: 24px;
  }
}

/****** ラベル ******/
/****** ボタン ******/
/*--------------------------------
 *  ハンバーガー
--------------------------------*/
.c-btn-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  background-color: var(--color_main);
  border-radius: 4px;
}

.c-btn-menu span {
  width: 16px;
  height: 11px;
  position: relative;
}
.c-btn-menu span > i {
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu span > i:nth-of-type(1) {
  top: 0;
}
.c-btn-menu span > i:nth-of-type(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-btn-menu span > i:nth-of-type(3) {
  bottom: 0;
}

/*------ 展開時 -------*/
[data-spmenu=opened] .c-btn-menu span > i:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-315deg);
          transform: translateY(-50%) rotate(-315deg);
}
[data-spmenu=opened] .c-btn-menu span > i:nth-of-type(2) {
  width: 0;
}
[data-spmenu=opened] .c-btn-menu span > i:nth-of-type(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
}

/*--------------------------------
 *  汎用ボタン
--------------------------------*/
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
  padding: 0.875em 1.25em 0.875em 2.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background-color: var(--color_main);
  border-radius: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn::after {
  content: "";
  display: block;
  width: 1.75em;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid currentColor;
  background-color: transparent;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMCAxMC4wMDMiPiA8cGF0aCBmaWxsPSIjZmZmIiBkPSJNOS45NTkgNS4yMDFhLjU1My41NTMgMCAwIDAgMC0uNDIxLjUwNy41MDcgMCAwIDAtLjEyMi0uMTc3TDUuMzkxLjE2NmEuNTU3LjU1NyAwIDEgMC0uNzg5Ljc4N2wzLjQ5NyAzLjQ5NEguNTU2YS41NTQuNTU0IDAgMSAwIDAgMS4xMDloNy41NDNsLTMuNSAzLjQ5M2EuNTQ4LjU0OCAwIDAgMCAwIC43ODcuNTU5LjU1OSAwIDAgMCAuMzg5LjE2Ni41NC41NCAwIDAgMCAuMzg5LS4xNjZMOS44MjMgNS40YTEuNDA2IDEuNDA2IDAgMCAwIC4xMjItLjE3N1oiIGRhdGEtbmFtZT0iVmVjdG9yICg5OCkiLz48L3N2Zz4=");
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: center;
}
.c-btn:hover {
  opacity: 0.6;
}

.c-btn.--white {
  background-color: #fff;
  color: var(--color_text);
}
.c-btn.--white::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMCAxMC4wMDMiPiA8cGF0aCBmaWxsPSIjMzMzIiBkPSJNOS45NTkgNS4yMDFhLjU1My41NTMgMCAwIDAgMC0uNDIxLjUwNy41MDcgMCAwIDAtLjEyMi0uMTc3TDUuMzkxLjE2NmEuNTU3LjU1NyAwIDEgMC0uNzg5Ljc4N2wzLjQ5NyAzLjQ5NEguNTU2YS41NTQuNTU0IDAgMSAwIDAgMS4xMDloNy41NDNsLTMuNSAzLjQ5M2EuNTQ4LjU0OCAwIDAgMCAwIC43ODcuNTU5LjU1OSAwIDAgMCAuMzg5LjE2Ni41NC41NCAwIDAgMCAuMzg5LS4xNjZMOS44MjMgNS40YTEuNDA2IDEuNDA2IDAgMCAwIC4xMjItLjE3N1oiIGRhdGEtbmFtZT0iVmVjdG9yICg5OCkiLz48L3N2Zz4=");
}

.c-btn[target=_blank]::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMiAxMiI+IDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMSAxdjcuMDhIMy45MlYxWm0wLTFIMy45MmExIDEgMCAwIDAtMSAxdjcuMDhhMSAxIDAgMCAwIDEgMUgxMWExIDEgMCAwIDAgMS0xVjFhMSAxIDAgMCAwLTEtMVpNOS41OCAxMUgyLjIxQTEuMjA4IDEuMjA4IDAgMCAxIDEgOS43OVYyLjQySDB2Ny4zN0EyLjIxMSAyLjIxMSAwIDAgMCAyLjIxIDEyaDcuMzdaIiBkYXRhLW5hbWU9IlZlY3RvciAtIDIwMjUtMDgtMDVUMTY0MTU2LjUwMSIvPjwvc3ZnPg==");
  background-size: 12px auto;
}

.c-btn.--white[target=_blank]::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMiAxMiI+IDxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0xMSAxdjcuMDhIMy45MlYxWm0wLTFIMy45MmExIDEgMCAwIDAtMSAxdjcuMDhhMSAxIDAgMCAwIDEgMUgxMWExIDEgMCAwIDAgMS0xVjFhMSAxIDAgMCAwLTEtMVpNOS41OCAxMUgyLjIxQTEuMjA4IDEuMjA4IDAgMCAxIDEgOS43OVYyLjQySDB2Ny4zN0EyLjIxMSAyLjIxMSAwIDAgMCAyLjIxIDEyaDcuMzdaIiBkYXRhLW5hbWU9IlZlY3RvciAtIDIwMjUtMDgtMDVUMTY0MTU2LjUwMSIvPjwvc3ZnPg==");
  background-size: 12px auto;
}

/****** サイトロゴ ******/
/*--------------------------------
 *  サイトロゴ
--------------------------------*/
.c-siteLogo {
  position: relative;
  display: block;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-siteLogo img {
  display: block;
  height: 40px;
}
@media screen and (max-width: 960px) {
  .c-siteLogo img {
    height: 27px;
  }
}

/*------ ホバーアクション -------*/
a.c-siteLogo:hover {
  opacity: 0.6;
}

/****** スクロールダウン ******/
.c-scrollDown {
  width: 2px;
  height: 14.45vh;
  background-color: #DFE2EA;
}

.c-scrollDown > i {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color_main);
  -webkit-animation: scrollDown 2s infinite;
          animation: scrollDown 2s infinite;
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  to {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  to {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}
/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** リスト ******/
/*--------------------------------
 *  お知らせ一覧
--------------------------------*/
.p-list-news__unit {
  position: relative;
  display: block;
}

.p-list-news {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.25em;
     -moz-column-gap: 1.25em;
          column-gap: 1.25em;
  row-gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5em 0;
  padding-left: 1.5em;
  color: #DFE2EA;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 600px) {
  .p-list-news {
    padding: 15px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.p-list-news::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 1em;
  height: 1em;
  color: inherit;
  border-radius: 50%;
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .p-list-news::before {
    content: none;
  }
}

/*------ 企業カラーここから -------*/
[data-news-panel=group] .p-list-news {
  color: var(--corp_color_group);
}

[data-news-panel=holdings] .p-list-news {
  color: var(--corp_color_holdings);
}

[data-news-panel=estate] .p-list-news {
  color: var(--corp_color_estate);
}

[data-news-panel=building] .p-list-news {
  color: var(--corp_color_building);
}

[data-news-panel=house] .p-list-news {
  color: var(--corp_color_house);
}

[data-news-panel=aki] .p-list-news {
  color: var(--corp_color_aki);
}

/*------ 企業カラーここまで -------*/
.p-list-news__date {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  min-width: 0;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color_text);
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .p-list-news__date {
    font-size: 12px;
    line-height: 1.4;
  }
}

.p-list-news__title {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: block;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color_text);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 601px) {
  .p-list-news__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 600px) {
  .p-list-news__title {
    font-size: 14px;
  }
}
.p-list-news__title:hover {
  opacity: 0.6;
}

.p-list__loading,
.p-list__no-posts {
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin: 0;
}

.p-list__loading {
  position: relative;
}
.p-list__loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid #ddd;
  border-top: 2px solid #5AB9D7;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*------ アーカイブ用 -------*/
.p-list-news__unit.--archive .p-list-news {
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 0;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
.p-list-news__unit.--archive .p-list-news::before {
  content: none;
}

.p-list-news__terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em;
  width: 100%;
  font-size: 12px;
}

.p-list-news__terms li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.4;
  color: #aaa;
}
.p-list-news__terms li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #DFE2EA;
}

.p-list-news__unit.--archive .p-list-news__date {
  color: #aaa;
}

.p-list-news__terms li.--group::before {
  background-color: var(--corp_color_group);
}

.p-list-news__terms li.--holdings::before {
  background-color: var(--corp_color_holdings);
}

.p-list-news__terms li.--estate::before {
  background-color: var(--corp_color_estate);
}

.p-list-news__terms li.--building::before {
  background-color: var(--corp_color_building);
}

.p-list-news__terms li.--house::before {
  background-color: var(--corp_color_house);
}

.p-list-news__terms li.--aki::before {
  background-color: var(--corp_color_aki);
}

/*--------------------------------
 *  外部サイトバナー
--------------------------------*/
.p-list-banner__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.6785714286%;
     -moz-column-gap: 2.6785714286%;
          column-gap: 2.6785714286%;
  row-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 60px;
}

.p-list-banner {
  position: relative;
}

.p-list-banner > a {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.p-list-banner > img {
  display: block;
  outline: 1px solid #DFE2EA !important;
  outline-offset: -1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-list-banner > a:hover ~ img {
  opacity: 0.6;
}

/* 外部リンクアイコン */
.p-list-banner:has(a[target=_blank])::before {
  content: "";
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  z-index: 1;
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMiAxMiI+IDxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0xMSAxdjcuMDhIMy45MlYxWm0wLTFIMy45MmExIDEgMCAwIDAtMSAxdjcuMDhhMSAxIDAgMCAwIDEgMUgxMWExIDEgMCAwIDAgMS0xVjFhMSAxIDAgMCAwLTEtMVpNOS41OCAxMUgyLjIxQTEuMjA4IDEuMjA4IDAgMCAxIDEgOS43OVYyLjQySDB2Ny4zN0EyLjIxMSAyLjIxMSAwIDAgMCAyLjIxIDEyaDcuMzdaIiBkYXRhLW5hbWU9IlZlY3RvciAtIDIwMjUtMDgtMDVUMTY0MTU2LjUwMSIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/****** ナビゲーション ******/
/*--------------------------------
 *  ヘッダー
--------------------------------*/
.p-nav-header {
  font-size: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5em;
     -moz-column-gap: 2.5em;
          column-gap: 2.5em;
}

.p-nav-header .menu-item {
  font-size: 0.875em;
  font-weight: 600;
  line-height: 1;
}
.p-nav-header .menu-item > a {
  text-decoration: none;
}

.p-nav-header .menu-item a:has([data-toggle=megaMenu]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

[data-toggle=megaMenu] {
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #DFE2EA;
  background-color: transparent;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxMCAxMCI+IDxwYXRoIGZpbGw9IiM1QUI5RDciIGQ9Ik0xMCA0LjI1SDUuNzVWMGgtMS41djQuMjVIMHYxLjVoNC4yNVYxMGgxLjVWNS43NUgxMHYtMS41WiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: center;
}

[data-megamenu=opened] [data-toggle=megaMenu] {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxMCAyIj4gPHBhdGggZmlsbD0iIzVBQjlENyIgZD0iTTEwIC4yNUgwdjEuNWgxMFYuMjVaIi8+PC9zdmc+");
}

/*--------------------------------
 *  メガメニュー
--------------------------------*/
.p-nav-megaMenu__wrapper {
  position: fixed;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--swl-headerH, 0px) - 20px);
  left: 0;
  display: block;
  padding: 0 40px;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .p-nav-megaMenu__wrapper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-nav-megaMenu__wrapper {
    padding: 0 10px;
  }
}

[data-megamenu=opened] .p-nav-megaMenu__wrapper {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-nav-megaMenu__wrapper .p-nav-megaMenu {
  position: relative;
  z-index: 0;
  display: block;
  padding: 40px;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  pointer-events: auto;
  overflow: hidden;
}
.p-nav-megaMenu__wrapper .p-nav-megaMenu::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background-color: #FFF;
  z-index: -1;
}

.p-nav-megaMenu__wrapper [data-scrolled=true] .p-nav-megaMenu::before {
  opacity: 0.9;
}

.p-nav-megaMenu__title {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.p-nav-megaMenu__unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .p-nav-megaMenu__unit {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-nav-megaMenu__unit {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}

.p-nav-megaMenu__item {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #DFE2EA;
  text-decoration: none;
}

@media screen and (min-width: 961px) {
  .p-nav-megaMenu__item:nth-child(-n+3) {
    border-top: 1px solid #DFE2EA;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .p-nav-megaMenu__item:nth-child(-n+2) {
    border-top: 1px solid #DFE2EA;
  }
}
@media screen and (max-width: 600px) {
  .p-nav-megaMenu__item:nth-child(-n+1) {
    border-top: 1px solid #DFE2EA;
  }
}
.p-nav-megaMenu__item .__layer {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p-nav-megaMenu__item .__col {
  min-width: 0;
}
.p-nav-megaMenu__item .__col.--thumb {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-nav-megaMenu__item .__col.--text {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.p-nav-megaMenu__thumb {
  display: block;
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
}
.p-nav-megaMenu__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-nav-megaMenu .__title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-nav-megaMenu .__title {
    font-size: 14px;
  }
}

.p-nav-megaMenu .__title::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 9px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5IDkiPiA8cGF0aCBmaWxsPSIjMzMzIiBkPSJNOC45NjIgNC42OGEuNS41IDAgMCAwIDAtLjM3OS40NTYuNDU2IDAgMCAwLS4xMS0uMTZMNC44NTEuMTVhLjUuNSAwIDAgMC0uNzEgMCAuNDkzLjQ5MyAwIDAgMCAwIC43MDhMNy4yOTIgNEguNWEuNS41IDAgMSAwIDAgMWg2Ljc5Mkw0LjE0MSA4LjE0MmEuNDkzLjQ5MyAwIDAgMCAwIC43MDguNS41IDAgMCAwIC4zNS4xNS40ODYuNDg2IDAgMCAwIC4zNS0uMTVsNC0zLjk5MWExLjI2NiAxLjI2NiAwIDAgMCAuMTEtLjE2WiIgZGF0YS1uYW1lPSJWZWN0b3IgKDEwMCkiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: 1px;
}

.p-nav-megaMenu .__title.--blank::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMiAxMiI+IDxwYXRoIGZpbGw9IiMzMzMiIGQ9Ik0xMSAxdjcuMDhIMy45MlYxWm0wLTFIMy45MmExIDEgMCAwIDAtMSAxdjcuMDhhMSAxIDAgMCAwIDEgMUgxMWExIDEgMCAwIDAgMS0xVjFhMSAxIDAgMCAwLTEtMVpNOS41OCAxMUgyLjIxQTEuMjA4IDEuMjA4IDAgMCAxIDEgOS43OVYyLjQySDB2Ny4zN0EyLjIxMSAyLjIxMSAwIDAgMCAyLjIxIDEyaDcuMzdaIiBkYXRhLW5hbWU9IlZlY3RvciAtIDIwMjUtMDgtMDVUMTY0MTU2LjUwMSIvPjwvc3ZnPg==");
  width: 12px;
}

.p-nav-megaMenu .__desc {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #777;
}
@media screen and (max-width: 960px) {
  .p-nav-megaMenu .__desc {
    font-size: 12px;
  }
}

/*--------------------------------
 *  フッター
--------------------------------*/
.p-nav-footer {
  font-size: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media screen and (max-width: 600px) {
  .p-nav-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 20px;
  }
}

.p-nav-footer .menu-item {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.p-nav-footer .menu-item > a {
  text-decoration: none;
}

/*--------------------------------
 *  ドロワー
--------------------------------*/
.p-nav-spMenu {
  width: 100%;
}

.p-nav-spMenu > .menu-item {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  border-bottom: 1px solid #DFE2EA;
}
.p-nav-spMenu > .menu-item::after {
  content: "";
  position: absolute;
  top: calc(15px + 0.9em - 12px);
  right: 0;
  display: block;
  width: 24px;
  height: auto;
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5IDkiPiA8cGF0aCBmaWxsPSIjMzMzIiBkPSJNOC45NjIgNC42OGEuNS41IDAgMCAwIDAtLjM3OS40NTYuNDU2IDAgMCAwLS4xMS0uMTZMNC44NTEuMTVhLjUuNSAwIDAgMC0uNzEgMCAuNDkzLjQ5MyAwIDAgMCAwIC43MDhMNy4yOTIgNEguNWEuNS41IDAgMSAwIDAgMWg2Ljc5Mkw0LjE0MSA4LjE0MmEuNDkzLjQ5MyAwIDAgMCAwIC43MDguNS41IDAgMCAwIC4zNS4xNS40ODYuNDg2IDAgMCAwIC4zNS0uMTVsNC0zLjk5MWExLjI2NiAxLjI2NiAwIDAgMCAuMTEtLjE2WiIgZGF0YS1uYW1lPSJWZWN0b3IgKDEwMCkiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: center;
}

.p-nav-spMenu > .menu-item.menu-item-has-children::after {
  content: none;
}

.p-nav-spMenu .menu-item a {
  text-decoration: none;
  color: inherit;
}

.p-nav-spMenu .sub-menu {
  padding-left: 10px;
  padding-right: 10px;
  height: 0;
  overflow: hidden;
}

.p-nav-spMenu .sub-menu .menu-item {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.p-nav-spMenu .sub-menu .menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(0.9em - 1px);
  display: block;
  width: 8px;
  height: 2px;
  background-color: currentColor;
}
.p-nav-spMenu .sub-menu .menu-item:not(:last-child) {
  margin-bottom: 15px;
}

[data-megamenu=opened] .p-nav-spMenu .sub-menu {
  padding-top: 25px;
  padding-bottom: 15px;
  height: auto;
}

.p-nav-spMenu [data-toggle=megaMenu] {
  position: absolute;
  top: calc(15px + 0.9em - 12px);
  right: 0;
}

/*--------------------------------
 *  お知らせタブ
--------------------------------*/
.p-nav-news__wrapper {
  margin-bottom: 20px;
}

.p-nav-news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .p-nav-news {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-nav-news {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-nav-news__item {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #777;
  background-color: currentColor;
  border-radius: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0.5;
}
@media screen and (max-width: 600px) {
  .p-nav-news__item {
    height: auto;
    padding: 10px;
    font-size: 13px;
  }
}
.p-nav-news__item > span {
  color: #FFFFFF;
}
.p-nav-news__item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: -1;
  display: block;
  width: 12px;
  height: 12px;
  color: inherit;
  background-color: currentColor;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
  visibility: hidden;
}

.p-nav-news__item.is-active {
  opacity: 1;
}
.p-nav-news__item.is-active::after {
  visibility: visible !important;
}

/*------ 企業カラー -------*/
.p-nav-news__item.is-active[data-news-tab=group] {
  color: var(--corp_color_group);
}

.p-nav-news__item.is-active[data-news-tab=holdings] {
  color: var(--corp_color_holdings);
}

.p-nav-news__item.is-active[data-news-tab=estate] {
  color: var(--corp_color_estate);
}

.p-nav-news__item.is-active[data-news-tab=building] {
  color: var(--corp_color_building);
}

.p-nav-news__item.is-active[data-news-tab=house] {
  color: var(--corp_color_house);
}

.p-nav-news__item.is-active[data-news-tab=aki] {
  color: var(--corp_color_aki);
}

/*--------------------------------
 *  お知らせコンテンツ
--------------------------------*/
.p-panel-news {
  padding: 40px;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .p-panel-news {
    margin-bottom: 30px;
    padding: 20px;
  }
}

.p-panel-news__item {
  display: none;
}
.p-panel-news__item.is-active {
  display: block;
}

.p-news-more {
  text-align: center;
}

/****** フォーム ******/
/*--------------------------------
	コンタクトフォーム
--------------------------------*/
form.wpcf7-form {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  font-family: inherit;
}

.p-form {
  width: 100%;
  line-height: 1.4;
}

.p-form .__row {
  margin-bottom: 2em;
}

.p-form .__th {
  padding-bottom: 0.5em;
  font-size: 14px;
  font-weight: 700;
}
.p-form .__th strong {
  font-size: 10px;
  margin-left: 0.5em;
  color: #dc3232;
}

.p-form .__td {
  font-size: 16px;
}

.p-form .__td input[type=text],
.p-form .__td input[type=tel],
.p-form .__td input[type=url],
.p-form .__td input[type=date],
.p-form .__td input[type=email],
.p-form .__td select,
.p-form .__td textarea {
  padding: 0.25em 0.5em;
  width: 100%;
  display: block;
}
.p-form .__td input[name=zip],
.p-form .__td select[name=pref] {
  width: 180px;
}

.p-form .wpcf7-form-control-wrap {
  display: block;
}
.p-form .wpcf7-checkbox,
.p-form .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  padding-top: 0.5em;
  font-size: 14px;
}
.p-form .wpcf7-list-item {
  margin: 0;
  display: block;
  line-height: 1;
}
.p-form select.wpcf7-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 1.5em;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+IDxwYXRoIGZpbGw9IiNhMGE1YWEiIGQ9Im01IDYgNSA1IDUtNSAyIDEtNyA3LTctNyAyLTF6Ii8+PC9zdmc+");
  background-position: center right 0.5em;
  background-repeat: no-repeat;
  background-size: 1em 1em;
}
.p-form .formError,
.p-form .formError * {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.p-form .wpcf7-not-valid-tip {
  margin-top: 0.5em;
  font-size: 12px;
}
.p-form ::-webkit-input-placeholder {
  color: #AAAAAA;
}
.p-form ::-moz-placeholder {
  color: #AAAAAA;
}
.p-form :-ms-input-placeholder {
  color: #AAAAAA;
}
.p-form ::-ms-input-placeholder {
  color: #AAAAAA;
}
.p-form ::placeholder {
  color: #AAAAAA;
}

.-privacyPolicy {
  margin-top: 2em;
}

.-privacyPolicy .__note {
  padding: 10px;
  width: 100%;
  height: 200px;
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.4;
  overflow-y: auto;
  border: 1px solid #ccc;
}
.-privacyPolicy .__note * {
  font-size: 12px;
}
.-privacyPolicy .__note h2 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 14px;
}

.-privacyPolicy .__agree {
  margin-top: 20px;
  line-height: 1;
  font-size: 14px;
  text-align: center;
}
.-privacyPolicy .__agree .wpcf7-list-item {
  margin-left: 0;
}

#submit.p-form__submit {
  display: block;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75em 1em;
  width: 180px;
  max-width: 100%;
  line-height: 1;
  text-align: center;
  color: #FFF;
  background-color: var(--color_main);
  border-width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#submit.p-form__submit:hover {
  opacity: 0.6;
}
#submit.p-form__submit:disabled {
  background-color: #b5b5b5 !important;
  opacity: 1;
}

/****** スライダー ******/
/*--------------------------------
 *  創業からの軌跡
--------------------------------*/
/* アクセシビリティ：スクリーンリーダー用非表示テキスト */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*------ 年代スライダー -------*/
.p-slider-decade__wrapper {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .p-slider-decade__wrapper {
    margin-bottom: 20px;
  }
}

.p-slider-decade__border {
  position: absolute;
  left: 0;
  bottom: 15.5px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.p-slider-decade__border::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #5AB9D7;
}

.p-slider-decade {
  width: 100%;
  overflow: visible;
}

.p-slider-decade .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 38px;
  padding-bottom: 8px;
  width: 182px;
  height: auto;
  cursor: pointer;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .p-slider-decade .swiper-slide {
    row-gap: 28px;
    width: 132px;
  }
}

.p-slider-decade__label {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33;
  color: inherit;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-slider-decade__label > strong {
  font-family: "Headland One", serif;
  font-size: 1.333em;
}

.p-slider-decade__icon {
  position: relative;
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50px;
  background-color: #5AB9D7;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-slider-decade .swiper-slide-active {
  color: #5AB9D7;
}
.p-slider-decade .swiper-slide-active .p-slider-decade__label {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.p-slider-decade .swiper-slide-active .p-slider-decade__icon {
  -webkit-transform: scale(2);
          transform: scale(2);
  background-color: #002337;
  border: 1px solid #5AB9D7;
}
.p-slider-decade .swiper-slide-active .p-slider-decade__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.4);
          transform: translate(-50%, -50%) scale(0.4);
  background-color: #5AB9D7;
}

/*------ 沿革コンテンツ -------*/
.p-slider-history__wrapper {
  position: relative;
  padding: 0 60px;
}
@media screen and (max-width: 600px) {
  .p-slider-history__wrapper {
    padding: 0;
    padding-top: 44px;
  }
}

.p-slider-history {
  width: 100%;
  overflow: hidden;
}

.p-slider-history .swiper-slide {
  width: 100%;
  min-height: 240px;
  color: #fff;
}

.p-slider-history .swiper-slide:nth-child(even) .__horiz {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-slider-history__wrapper .__prev,
.p-slider-history__wrapper .__next {
  position: absolute;
  top: 100px;
  z-index: 3;
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #5AB9D7;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .p-slider-history__wrapper .__prev,
  .p-slider-history__wrapper .__next {
    top: 0;
    border-radius: 4px;
    height: 24px;
    background-size: 6px auto !important;
  }
}
.p-slider-history__wrapper .__prev::after,
.p-slider-history__wrapper .__next::after {
  content: none;
}
.p-slider-history__wrapper .__prev.swiper-button-disabled,
.p-slider-history__wrapper .__next.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.p-slider-history__wrapper .__prev {
  left: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4IDE0Ij4gPHBhdGggZmlsbD0iIzVhYjlkNyIgZD0iTTcgMTRhMSAxIDAgMCAxLS43MDctLjI5M2wtNi02YTEgMSAwIDAgMSAwLTEuNDE0bDYtNmExIDEgMCAwIDEgMS40MTQgMS40MTRMMi40MTQgN2w1LjI5MyA1LjI5M0ExIDEgMCAwIDEgNyAxNFoiIGRhdGEtbmFtZT0iVmVjdG9yICg5NykiLz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: center;
}

.p-slider-history__wrapper .__next {
  right: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA4IDE0Ij4gPHBhdGggZmlsbD0iIzVhYjlkNyIgZD0iTTEgMTRhMSAxIDAgMCAxLS43MDctMS43MDdMNS41ODYgNyAuMjkzIDEuNzA3QTEgMSAwIDAgMSAxLjcwNy4yOTNsNiA2YTEgMSAwIDAgMSAwIDEuNDE0bC02IDZBMSAxIDAgMCAxIDEgMTRaIiBkYXRhLW5hbWU9IlZlY3RvciAoOTcpIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: center;
}

/*--------------------------------
 *  グループ企業一覧
--------------------------------*/
.p-slider-group__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .p-slider-group__horiz {
    row-gap: 60px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .p-slider-group__horiz {
    display: block;
  }
}

.p-slider-group__col {
  min-width: 0;
}
.p-slider-group__col.--pagination {
  -ms-flex-preferred-size: 420px;
      flex-basis: 420px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-slider-group__col.--slider {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .p-slider-group__col.--slider {
    -ms-flex-preferred-size: 420px;
        flex-basis: 420px;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 600px) {
  .p-slider-group__col.--slider {
    margin-top: 40px;
  }
}

@media screen and (max-width: 600px) {
  .p-slider-group .swiper-wrapper {
    display: block;
  }
}
.p-slider-group__item {
  position: relative;
  padding: 2.9411764706%;
  padding-left: 5.8823529412%;
  border-radius: 10px;
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .p-slider-group__item {
    padding: 20px;
    padding-bottom: 40px;
  }
  .p-slider-group__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.p-slider-group__item .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.2258064516%;
     -moz-column-gap: 3.2258064516%;
          column-gap: 3.2258064516%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .p-slider-group__item .__horiz {
    display: block;
  }
}

.p-slider-group__item .__horiz .__col {
  min-width: 0;
}
.p-slider-group__item .__horiz .__col.--left {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}
@media screen and (max-width: 600px) {
  .p-slider-group__item .__horiz .__col.--left {
    margin-top: 20px;
    padding-bottom: 0;
  }
}
.p-slider-group__item .__horiz .__col.--right {
  -ms-flex-preferred-size: 45.1612903226%;
      flex-basis: 45.1612903226%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-slider-group__thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 280/340;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .p-slider-group__thumb {
    border-radius: 5px;
    aspect-ratio: 16/9;
  }
}
.p-slider-group__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-slider-group__label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 0.25em 0.625em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border-radius: 0.25em;
  border: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .p-slider-group__label {
    font-size: 12px;
  }
}

.p-slider-group__text > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
  margin-bottom: 1em;
}
.p-slider-group__text > *:first-child {
  margin-top: 0 !important;
}
.p-slider-group__text > *:last-child {
  margin-bottom: 0 !important;
}

.p-slider-group__text > h3 {
  margin-bottom: 0.5em;
  margin-top: 1em;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 960px) {
  .p-slider-group__text > h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.p-slider-group__text > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .p-slider-group__text > p {
    font-size: 14px;
  }
}

.p-slider-group__text > hr {
  margin: 1.5em 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  border-width: 0;
}

.p-slider-group__text > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0.5em 1.25em 0.5em 2.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: var(--color_text);
  text-decoration: none;
  background-color: #fff;
  border-radius: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-slider-group__text > a::after {
  content: "";
  display: block;
  width: 1.5em;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid currentColor;
  background-color: transparent;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMCAxMC4wMDMiPiA8cGF0aCBmaWxsPSIjMzMzIiBkPSJNOS45NTkgNS4yMDFhLjU1My41NTMgMCAwIDAgMC0uNDIxLjUwNy41MDcgMCAwIDAtLjEyMi0uMTc3TDUuMzkxLjE2NmEuNTU3LjU1NyAwIDEgMC0uNzg5Ljc4N2wzLjQ5NyAzLjQ5NEguNTU2YS41NTQuNTU0IDAgMSAwIDAgMS4xMDloNy41NDNsLTMuNSAzLjQ5M2EuNTQ4LjU0OCAwIDAgMCAwIC43ODcuNTU5LjU1OSAwIDAgMCAuMzg5LjE2Ni41NC41NCAwIDAgMCAuMzg5LS4xNjZMOS44MjMgNS40YTEuNDA2IDEuNDA2IDAgMCAwIC4xMjItLjE3N1oiIGRhdGEtbmFtZT0iVmVjdG9yICg5OCkiLz48L3N2Zz4=");
  background-size: 0.75em auto;
  background-repeat: no-repeat;
  background-position: center;
}
.p-slider-group__text > a:hover {
  opacity: 0.6;
}

.p-nav-group {
  position: relative;
  display: block;
  background-image: url("../img/other/logo.png");
  background-repeat: no-repeat;
  background-size: 230px auto;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .p-nav-group {
    background-size: 180px auto;
  }
}

.p-nav-group .swiper-pagination {
  --r: 160;
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: calc(var(--r) * 2px);
  height: auto;
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAzODIgMzgyIj4gPHBhdGggc3Ryb2tlPSIjREREIiBzdHJva2UtZGFzaGFycmF5PSI0LjAxIDQuMDEiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgZD0iTTE5MSAzODFjMTA0LjkzNCAwIDE5MC04NS4wNjYgMTkwLTE5MFMyOTUuOTM0IDEgMTkxIDEgMSA4Ni4wNjYgMSAxOTFzODUuMDY2IDE5MCAxOTAgMTkwWiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 600px) {
  .p-nav-group .swiper-pagination {
    --r: 132;
  }
}

.p-nav-group .swiper-pagination-bullet {
  --a2: calc(var(--a) * 1deg - 90deg);
  --x: calc(cos(var(--a2)) * var(--r) * 1px);
  --y: calc(sin(var(--a2)) * var(--r) * 1px);
  position: absolute;
  translate: var(--x) var(--y);
  margin: 0 !important;
  width: 75px;
  height: auto;
  aspect-ratio: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: transparent !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1 !important;
}
@media screen and (max-width: 600px) {
  .p-nav-group .swiper-pagination-bullet {
    width: 60px;
  }
}

.p-nav-group .swiper-pagination-bullet:hover,
.p-nav-group .swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}

.p-nav-group .swiper-pagination-bullet[data-index="1"] {
  --a: 90;
}
.p-nav-group .swiper-pagination-bullet[data-index="2"] {
  --a: 150;
}
.p-nav-group .swiper-pagination-bullet[data-index="3"] {
  --a: 210;
}
.p-nav-group .swiper-pagination-bullet[data-index="4"] {
  --a: 270;
}
.p-nav-group .swiper-pagination-bullet[data-index="5"] {
  --a: 330;
}
.p-nav-group .swiper-pagination-bullet[data-index="6"] {
  --a: 390;
}
@media screen and (max-width: 600px) {
  .p-nav-group .swiper-pagination-bullet[data-index="1"] {
    --a: 330;
  }
  .p-nav-group .swiper-pagination-bullet[data-index="2"] {
    --a: 390;
  }
  .p-nav-group .swiper-pagination-bullet[data-index="3"] {
    --a: 90;
  }
  .p-nav-group .swiper-pagination-bullet[data-index="4"] {
    --a: 270;
  }
  .p-nav-group .swiper-pagination-bullet[data-index="5"] {
    --a: 210;
  }
  .p-nav-group .swiper-pagination-bullet[data-index="6"] {
    --a: 150;
  }
}

.p-nav-group .swiper-pagination-bullet.--group-01 {
  background-image: url("../img/group/01.svg");
}
.p-nav-group .swiper-pagination-bullet.--group-02 {
  background-image: url("../img/group/02.svg");
}
.p-nav-group .swiper-pagination-bullet.--group-03 {
  background-image: url("../img/group/03.svg");
}
.p-nav-group .swiper-pagination-bullet.--group-04 {
  background-image: url("../img/group/04.svg");
}
.p-nav-group .swiper-pagination-bullet.--group-05 {
  background-image: url("../img/group/05.svg");
}
.p-nav-group .swiper-pagination-bullet.--group-06 {
  background-image: url("../img/group/06.svg");
}

.p-slider-group__item.--group {
  background-image: url("../img/group/texture/group.png");
}

.p-slider-group__item.--holdings {
  background-image: url("../img/group/texture/holdings.png");
}

.p-slider-group__item.--estate {
  background-image: url("../img/group/texture/estate.png");
}

.p-slider-group__item.--building {
  background-image: url("../img/group/texture/building.png");
}

.p-slider-group__item.--house {
  background-image: url("../img/group/texture/house.png");
}

.p-slider-group__item.--aki {
  background-image: url("../img/group/texture/aki.png");
}

/****** カード ******/
/*--------------------------------
 *  沿革
--------------------------------*/
.p-card-history {
  width: 100%;
}

.p-card-history .__horiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media screen and (max-width: 600px) {
  .p-card-history .__horiz {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.p-card-history .__img {
  min-width: 0;
  -ms-flex-preferred-size: 16%;
      flex-basis: 16%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 600px) {
  .p-card-history .__img {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
  }
}
.p-card-history .__img picture {
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
}
.p-card-history .__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-card-history .__list {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  padding-top: 20px;
  min-width: 0;
}
@media screen and (max-width: 600px) {
  .p-card-history .__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    padding-top: 0;
  }
}

.p-card-history .__title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.p-card-history .__title strong {
  font-family: "Headland One", serif;
  font-size: 1.333em;
}

.p-card-history .__desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

/*--------------------------------
 *  グループ企業カード
--------------------------------*/
/* カードコンテナ */
.p-card-group__unit {
  position: relative;
  /* スティッキー機能有効時 */
}
@media screen and (max-width: 600px) {
  .p-card-group__unit {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
  }
}
.p-card-group__unit.sticky-scroll-enabled {
  height: calc(var(--card-count, 6) * 100vh);
}
@media screen and (max-width: 600px) {
  .p-card-group__unit.sticky-scroll-enabled {
    height: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
    position: static;
  }
}

/* 個別カード */
.p-card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - var(--swl-headerH, 0px));
  padding-top: 10px;
  padding-bottom: 40px;
  pointer-events: none;
  /* スティッキー機能有効時 */
}
@media screen and (max-width: 600px) {
  .p-card-group {
    display: block;
    padding: 0;
    height: auto;
  }
}
.sticky-scroll-enabled .p-card-group {
  position: sticky;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--swl-headerH, 0px));
  width: 100%;
  z-index: 1;
  /* 2枚目以降を重ね合わせ */
  /* 非アクティブカード：背後に隠す */
  /* アクティブカード：最前面 */
}
@media screen and (max-width: 600px) {
  .sticky-scroll-enabled .p-card-group {
    position: static;
    z-index: auto;
  }
}
.sticky-scroll-enabled .p-card-group:not(:first-child) {
  margin-top: calc(-1 * (100vh - var(--wp-admin--admin-bar--height, 0px) - var(--swl-headerH, 0px)));
}
@media screen and (max-width: 600px) {
  .sticky-scroll-enabled .p-card-group:not(:first-child) {
    margin-top: 0;
  }
}
.sticky-scroll-enabled .p-card-group:not(.is-active) {
  z-index: 1;
}
.sticky-scroll-enabled .p-card-group:not(.is-active) .p-card-group__text {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.sticky-scroll-enabled .p-card-group.is-active {
  z-index: 10;
}
.sticky-scroll-enabled .p-card-group.is-active .p-card-group__text {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}

/* カード画像エリア */
.p-card-group__img {
  -ms-flex-preferred-size: 54.4642857143%;
      flex-basis: 54.4642857143%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 0;
  height: 100%;
  /* スティッキー機能有効時 */
}
@media screen and (max-width: 600px) {
  .p-card-group__img {
    height: auto;
  }
}
.sticky-scroll-enabled .p-card-group__img {
  position: sticky;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--swl-headerH, 0px));
  z-index: 5;
  will-change: transform, opacity;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.1s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out, opacity 0.3s ease-out;
  transition: transform 0.1s ease-out, opacity 0.3s ease-out, -webkit-transform 0.1s ease-out;
  /* アクティブカードの画像：最前面 */
  /* 非アクティブカードの画像：背後 */
}
@media screen and (max-width: 600px) {
  .sticky-scroll-enabled .p-card-group__img {
    position: static;
    z-index: auto;
    -webkit-transition: none;
    transition: none;
  }
}
.is-active .sticky-scroll-enabled .p-card-group__img {
  z-index: 15;
}
.p-card-group:not(.is-active) .sticky-scroll-enabled .p-card-group__img {
  z-index: 5;
}

/* 画像要素 */
.p-card-group__img picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  /* スティッキー機能有効時：スケール効果 */
}
@media screen and (max-width: 600px) {
  .p-card-group__img picture {
    height: auto;
    aspect-ratio: 1;
  }
}
.sticky-scroll-enabled .p-card-group__img picture {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media screen and (max-width: 600px) {
  .sticky-scroll-enabled .p-card-group__img picture {
    -webkit-transition: none;
    transition: none;
  }
}
.p-card-group__img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* カードテキストエリア */
.p-card-group__text {
  -ms-flex-preferred-size: 42.8571428571%;
      flex-basis: 42.8571428571%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3.5714285714%;
  min-width: 0;
  height: 100%;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  /* スティッキー機能有効時：フェード効果 */
}
@media screen and (max-width: 600px) {
  .p-card-group__text {
    padding: 20px;
    padding-bottom: 30px;
    height: auto;
  }
}
.sticky-scroll-enabled .p-card-group__text {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 600px) {
  .sticky-scroll-enabled .p-card-group__text {
    -webkit-transition: none;
    transition: none;
  }
}

/* テキストエリア内画像 */
.p-card-group__text picture {
  display: block;
  margin-bottom: 15px;
  width: 100%;
  border: 1px solid #fff;
}
.p-card-group__text picture img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

/* カードラベル */
.p-card-group__label {
  display: block;
  margin-bottom: 20px;
  padding: 4px 10px 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 100vh;
  border: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  .p-card-group__label {
    margin-bottom: 10px;
  }
}

/* カードタイトル */
.p-card-group__title {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-card-group__title {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

/* カード説明 */
.p-card-group__desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-card-group__desc {
    font-size: 14px;
  }
}

/* カード内ボタン */
.p-card-group .c-btn {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .p-card-group .c-btn {
    margin-top: 30px;
    margin-left: auto;
  }
}

.p-card-group__indicator {
  position: fixed;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  /* 表示状態 */
}
@media screen and (max-width: 600px) {
  .p-card-group__indicator {
    display: none;
  }
}
.p-card-group__indicator.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-card-group__indicator span {
  position: relative;
  display: block;
  margin: 0 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.p-card-group__indicator span::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-card-group__indicator span svg {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  stroke-dasharray: 69px;
  stroke-dashoffset: 69px;
  stroke: #fff;
  fill: transparent;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-card-group__indicator span.is-active::before {
  opacity: 1;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.p-card-group__indicator span:not(.is-active) svg circle {
  stroke-dashoffset: 69px !important;
}

.p-card-group.--group .p-card-group__text {
  background-image: url("../img/texture/08.png");
}

.p-card-group.--holdings .p-card-group__text {
  background-image: url("../img/texture/09.png");
}

.p-card-group.--estate .p-card-group__text {
  background-image: url("../img/texture/10.png");
}

.p-card-group.--building .p-card-group__text {
  background-image: url("../img/texture/11.png");
}

.p-card-group.--house .p-card-group__text {
  background-image: url("../img/texture/12.png");
}

.p-card-group.--aki .p-card-group__text {
  background-image: url("../img/texture/13.png");
}

/****** パンくずリスト ******/
#breadcrumb.p-breadcrumb {
  padding-top: 0 !important;
  padding-bottom: 20px;
}

.p-breadcrumb__list {
  font-size: 12px;
}

.c-categoryList__separation:after,
.p-breadcrumb__item:after {
  width: 5px;
  clip-path: polygon(0 47%, 100% 47%, 100% 53%, 0 53%);
}

/****** スマホ開閉メニュー ******/
.p-spMenu {
  z-index: 99;
  height: 100%;
  font-size: 16px;
}

.-right .p-spMenu__inner {
  padding-top: 0;
  margin-top: var(--wp-admin--admin-bar--height, 0px);
  width: 100vw;
  height: calc(100% - var(--wp-admin--admin-bar--height, 0px));
  font-size: inherit;
  background-color: transparent !important;
  color: var(--color_text);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.-right .p-spMenu__inner::before {
  background-color: #ffffff;
}

.p-spMenu__body {
  padding-top: calc(20px + var(--swl-headerH, 70px));
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  height: 100%;
}

.p-spMenu__body .c-btn-shop {
  margin-top: 30px;
}

.p-spMenu__body .c-btn-sns__unit {
  margin-top: 30px;
}

/*------ 展開時 -------*/
[data-spmenu=opened] #wpadminbar {
  z-index: 99999;
}
[data-spmenu=opened] .p-spMenu__inner {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}
[data-spmenu=opened] .l-header__inner {
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

/* Utility
 * 接頭辞：u-
 * スポットで状態変化させたいmarginなどの補助クラスを定義
======================================*/
/****** マージン ******/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mt0e {
  margin-top: 0em !important;
}

.u-mb0e {
  margin-bottom: 0em !important;
}

.u-mt0_25e {
  margin-top: 0.25em !important;
}

.u-mb0_25e {
  margin-bottom: 0.25em !important;
}

.u-mt0_5e {
  margin-top: 0.5em !important;
}

.u-mb0_5e {
  margin-bottom: 0.5em !important;
}

.u-mt0_75e {
  margin-top: 0.75em !important;
}

.u-mb0_75e {
  margin-bottom: 0.75em !important;
}

.u-mt1e {
  margin-top: 1em !important;
}

.u-mb1e {
  margin-bottom: 1em !important;
}

.u-mt1_25e {
  margin-top: 1.25em !important;
}

.u-mb1_25e {
  margin-bottom: 1.25em !important;
}

.u-mt1_5e {
  margin-top: 1.5em !important;
}

.u-mb1_5e {
  margin-bottom: 1.5em !important;
}

.u-mt1_75e {
  margin-top: 1.75em !important;
}

.u-mb1_75e {
  margin-bottom: 1.75em !important;
}

.u-mt2e {
  margin-top: 2em !important;
}

.u-mb2e {
  margin-bottom: 2em !important;
}

.u-mt2_25e {
  margin-top: 2.25em !important;
}

.u-mb2_25e {
  margin-bottom: 2.25em !important;
}

.u-mt2_5e {
  margin-top: 2.5em !important;
}

.u-mb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 961px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .l-mt0e {
    margin-top: 0em !important;
  }
  .l-mb0e {
    margin-bottom: 0em !important;
  }
  .l-mt0_25e {
    margin-top: 0.25em !important;
  }
  .l-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-mt0_5e {
    margin-top: 0.5em !important;
  }
  .l-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-mt0_75e {
    margin-top: 0.75em !important;
  }
  .l-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-mt1e {
    margin-top: 1em !important;
  }
  .l-mb1e {
    margin-bottom: 1em !important;
  }
  .l-mt1_25e {
    margin-top: 1.25em !important;
  }
  .l-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-mt1_5e {
    margin-top: 1.5em !important;
  }
  .l-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-mt1_75e {
    margin-top: 1.75em !important;
  }
  .l-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-mt2e {
    margin-top: 2em !important;
  }
  .l-mb2e {
    margin-bottom: 2em !important;
  }
  .l-mt2_25e {
    margin-top: 2.25em !important;
  }
  .l-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-mt2_5e {
    margin-top: 2.5em !important;
  }
  .l-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .m-mt0e {
    margin-top: 0em !important;
  }
  .m-mb0e {
    margin-bottom: 0em !important;
  }
  .m-mt0_25e {
    margin-top: 0.25em !important;
  }
  .m-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-mt0_5e {
    margin-top: 0.5em !important;
  }
  .m-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-mt0_75e {
    margin-top: 0.75em !important;
  }
  .m-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-mt1e {
    margin-top: 1em !important;
  }
  .m-mb1e {
    margin-bottom: 1em !important;
  }
  .m-mt1_25e {
    margin-top: 1.25em !important;
  }
  .m-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-mt1_5e {
    margin-top: 1.5em !important;
  }
  .m-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-mt1_75e {
    margin-top: 1.75em !important;
  }
  .m-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-mt2e {
    margin-top: 2em !important;
  }
  .m-mb2e {
    margin-bottom: 2em !important;
  }
  .m-mt2_25e {
    margin-top: 2.25em !important;
  }
  .m-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-mt2_5e {
    margin-top: 2.5em !important;
  }
  .m-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 600px) {
  .s-mt0 {
    margin-top: 0px !important;
  }
  .s-mb0 {
    margin-bottom: 0px !important;
  }
  .s-mt5 {
    margin-top: 5px !important;
  }
  .s-mb5 {
    margin-bottom: 5px !important;
  }
  .s-mt10 {
    margin-top: 10px !important;
  }
  .s-mb10 {
    margin-bottom: 10px !important;
  }
  .s-mt15 {
    margin-top: 15px !important;
  }
  .s-mb15 {
    margin-bottom: 15px !important;
  }
  .s-mt20 {
    margin-top: 20px !important;
  }
  .s-mb20 {
    margin-bottom: 20px !important;
  }
  .s-mt25 {
    margin-top: 25px !important;
  }
  .s-mb25 {
    margin-bottom: 25px !important;
  }
  .s-mt30 {
    margin-top: 30px !important;
  }
  .s-mb30 {
    margin-bottom: 30px !important;
  }
  .s-mt35 {
    margin-top: 35px !important;
  }
  .s-mb35 {
    margin-bottom: 35px !important;
  }
  .s-mt40 {
    margin-top: 40px !important;
  }
  .s-mb40 {
    margin-bottom: 40px !important;
  }
  .s-mt45 {
    margin-top: 45px !important;
  }
  .s-mb45 {
    margin-bottom: 45px !important;
  }
  .s-mt50 {
    margin-top: 50px !important;
  }
  .s-mb50 {
    margin-bottom: 50px !important;
  }
  .s-mt0e {
    margin-top: 0em !important;
  }
  .s-mb0e {
    margin-bottom: 0em !important;
  }
  .s-mt0_25e {
    margin-top: 0.25em !important;
  }
  .s-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-mt0_5e {
    margin-top: 0.5em !important;
  }
  .s-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-mt0_75e {
    margin-top: 0.75em !important;
  }
  .s-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-mt1e {
    margin-top: 1em !important;
  }
  .s-mb1e {
    margin-bottom: 1em !important;
  }
  .s-mt1_25e {
    margin-top: 1.25em !important;
  }
  .s-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-mt1_5e {
    margin-top: 1.5em !important;
  }
  .s-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-mt1_75e {
    margin-top: 1.75em !important;
  }
  .s-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-mt2e {
    margin-top: 2em !important;
  }
  .s-mb2e {
    margin-bottom: 2em !important;
  }
  .s-mt2_25e {
    margin-top: 2.25em !important;
  }
  .s-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-mt2_5e {
    margin-top: 2.5em !important;
  }
  .s-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** パディング ******/
.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pt0e {
  margin-top: 0em !important;
}

.u-pb0e {
  margin-bottom: 0em !important;
}

.u-pt0_25e {
  margin-top: 0.25em !important;
}

.u-pb0_25e {
  margin-bottom: 0.25em !important;
}

.u-pt0_5e {
  margin-top: 0.5em !important;
}

.u-pb0_5e {
  margin-bottom: 0.5em !important;
}

.u-pt0_75e {
  margin-top: 0.75em !important;
}

.u-pb0_75e {
  margin-bottom: 0.75em !important;
}

.u-pt1e {
  margin-top: 1em !important;
}

.u-pb1e {
  margin-bottom: 1em !important;
}

.u-pt1_25e {
  margin-top: 1.25em !important;
}

.u-pb1_25e {
  margin-bottom: 1.25em !important;
}

.u-pt1_5e {
  margin-top: 1.5em !important;
}

.u-pb1_5e {
  margin-bottom: 1.5em !important;
}

.u-pt1_75e {
  margin-top: 1.75em !important;
}

.u-pb1_75e {
  margin-bottom: 1.75em !important;
}

.u-pt2e {
  margin-top: 2em !important;
}

.u-pb2e {
  margin-bottom: 2em !important;
}

.u-pt2_25e {
  margin-top: 2.25em !important;
}

.u-pb2_25e {
  margin-bottom: 2.25em !important;
}

.u-pt2_5e {
  margin-top: 2.5em !important;
}

.u-pb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 961px) {
  .l-pt0 {
    padding-top: 0px !important;
  }
  .l-pb0 {
    padding-bottom: 0px !important;
  }
  .l-pt5 {
    padding-top: 5px !important;
  }
  .l-pb5 {
    padding-bottom: 5px !important;
  }
  .l-pt10 {
    padding-top: 10px !important;
  }
  .l-pb10 {
    padding-bottom: 10px !important;
  }
  .l-pt15 {
    padding-top: 15px !important;
  }
  .l-pb15 {
    padding-bottom: 15px !important;
  }
  .l-pt20 {
    padding-top: 20px !important;
  }
  .l-pb20 {
    padding-bottom: 20px !important;
  }
  .l-pt25 {
    padding-top: 25px !important;
  }
  .l-pb25 {
    padding-bottom: 25px !important;
  }
  .l-pt30 {
    padding-top: 30px !important;
  }
  .l-pb30 {
    padding-bottom: 30px !important;
  }
  .l-pt35 {
    padding-top: 35px !important;
  }
  .l-pb35 {
    padding-bottom: 35px !important;
  }
  .l-pt40 {
    padding-top: 40px !important;
  }
  .l-pb40 {
    padding-bottom: 40px !important;
  }
  .l-pt45 {
    padding-top: 45px !important;
  }
  .l-pb45 {
    padding-bottom: 45px !important;
  }
  .l-pt50 {
    padding-top: 50px !important;
  }
  .l-pb50 {
    padding-bottom: 50px !important;
  }
  .l-pt0e {
    margin-top: 0em !important;
  }
  .l-pb0e {
    margin-bottom: 0em !important;
  }
  .l-pt0_25e {
    margin-top: 0.25em !important;
  }
  .l-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-pt0_5e {
    margin-top: 0.5em !important;
  }
  .l-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-pt0_75e {
    margin-top: 0.75em !important;
  }
  .l-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-pt1e {
    margin-top: 1em !important;
  }
  .l-pb1e {
    margin-bottom: 1em !important;
  }
  .l-pt1_25e {
    margin-top: 1.25em !important;
  }
  .l-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-pt1_5e {
    margin-top: 1.5em !important;
  }
  .l-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-pt1_75e {
    margin-top: 1.75em !important;
  }
  .l-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-pt2e {
    margin-top: 2em !important;
  }
  .l-pb2e {
    margin-bottom: 2em !important;
  }
  .l-pt2_25e {
    margin-top: 2.25em !important;
  }
  .l-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-pt2_5e {
    margin-top: 2.5em !important;
  }
  .l-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .m-pt0 {
    padding-top: 0px !important;
  }
  .m-pb0 {
    padding-bottom: 0px !important;
  }
  .m-pt5 {
    padding-top: 5px !important;
  }
  .m-pb5 {
    padding-bottom: 5px !important;
  }
  .m-pt10 {
    padding-top: 10px !important;
  }
  .m-pb10 {
    padding-bottom: 10px !important;
  }
  .m-pt15 {
    padding-top: 15px !important;
  }
  .m-pb15 {
    padding-bottom: 15px !important;
  }
  .m-pt20 {
    padding-top: 20px !important;
  }
  .m-pb20 {
    padding-bottom: 20px !important;
  }
  .m-pt25 {
    padding-top: 25px !important;
  }
  .m-pb25 {
    padding-bottom: 25px !important;
  }
  .m-pt30 {
    padding-top: 30px !important;
  }
  .m-pb30 {
    padding-bottom: 30px !important;
  }
  .m-pt35 {
    padding-top: 35px !important;
  }
  .m-pb35 {
    padding-bottom: 35px !important;
  }
  .m-pt40 {
    padding-top: 40px !important;
  }
  .m-pb40 {
    padding-bottom: 40px !important;
  }
  .m-pt45 {
    padding-top: 45px !important;
  }
  .m-pb45 {
    padding-bottom: 45px !important;
  }
  .m-pt50 {
    padding-top: 50px !important;
  }
  .m-pb50 {
    padding-bottom: 50px !important;
  }
  .m-pt0e {
    margin-top: 0em !important;
  }
  .m-pb0e {
    margin-bottom: 0em !important;
  }
  .m-pt0_25e {
    margin-top: 0.25em !important;
  }
  .m-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-pt0_5e {
    margin-top: 0.5em !important;
  }
  .m-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-pt0_75e {
    margin-top: 0.75em !important;
  }
  .m-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-pt1e {
    margin-top: 1em !important;
  }
  .m-pb1e {
    margin-bottom: 1em !important;
  }
  .m-pt1_25e {
    margin-top: 1.25em !important;
  }
  .m-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-pt1_5e {
    margin-top: 1.5em !important;
  }
  .m-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-pt1_75e {
    margin-top: 1.75em !important;
  }
  .m-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-pt2e {
    margin-top: 2em !important;
  }
  .m-pb2e {
    margin-bottom: 2em !important;
  }
  .m-pt2_25e {
    margin-top: 2.25em !important;
  }
  .m-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-pt2_5e {
    margin-top: 2.5em !important;
  }
  .m-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 600px) {
  .s-pt0 {
    padding-top: 0px !important;
  }
  .s-pb0 {
    padding-bottom: 0px !important;
  }
  .s-pt5 {
    padding-top: 5px !important;
  }
  .s-pb5 {
    padding-bottom: 5px !important;
  }
  .s-pt10 {
    padding-top: 10px !important;
  }
  .s-pb10 {
    padding-bottom: 10px !important;
  }
  .s-pt15 {
    padding-top: 15px !important;
  }
  .s-pb15 {
    padding-bottom: 15px !important;
  }
  .s-pt20 {
    padding-top: 20px !important;
  }
  .s-pb20 {
    padding-bottom: 20px !important;
  }
  .s-pt25 {
    padding-top: 25px !important;
  }
  .s-pb25 {
    padding-bottom: 25px !important;
  }
  .s-pt30 {
    padding-top: 30px !important;
  }
  .s-pb30 {
    padding-bottom: 30px !important;
  }
  .s-pt35 {
    padding-top: 35px !important;
  }
  .s-pb35 {
    padding-bottom: 35px !important;
  }
  .s-pt40 {
    padding-top: 40px !important;
  }
  .s-pb40 {
    padding-bottom: 40px !important;
  }
  .s-pt45 {
    padding-top: 45px !important;
  }
  .s-pb45 {
    padding-bottom: 45px !important;
  }
  .s-pt50 {
    padding-top: 50px !important;
  }
  .s-pb50 {
    padding-bottom: 50px !important;
  }
  .s-pt0e {
    margin-top: 0em !important;
  }
  .s-pb0e {
    margin-bottom: 0em !important;
  }
  .s-pt0_25e {
    margin-top: 0.25em !important;
  }
  .s-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-pt0_5e {
    margin-top: 0.5em !important;
  }
  .s-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-pt0_75e {
    margin-top: 0.75em !important;
  }
  .s-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-pt1e {
    margin-top: 1em !important;
  }
  .s-pb1e {
    margin-bottom: 1em !important;
  }
  .s-pt1_25e {
    margin-top: 1.25em !important;
  }
  .s-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-pt1_5e {
    margin-top: 1.5em !important;
  }
  .s-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-pt1_75e {
    margin-top: 1.75em !important;
  }
  .s-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-pt2e {
    margin-top: 2em !important;
  }
  .s-pb2e {
    margin-bottom: 2em !important;
  }
  .s-pt2_25e {
    margin-top: 2.25em !important;
  }
  .s-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-pt2_5e {
    margin-top: 2.5em !important;
  }
  .s-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** その他 ******/
/*--------------------------------
 *  デバイス別 表示/非表示
 *  sm　：スマートフォン幅、モバイル幅のみ表示
 *  md　：タブレット幅のみ表示
 *  lg　：PC幅のみ表示
 *  mdlg：デスクトップ幅のみ表示
--------------------------------*/
@media screen and (min-width: 961px) {
  .md {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
  .smmd {
    display: none !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .lg {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .lg {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .mdlg {
    display: none !important;
  }
}
/*--------------------------------
 *  フロート・クリアフィックス
--------------------------------*/
.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

/*--------------------------------
 *  WPブロックエディター
--------------------------------*/
h2.wp-block-heading:not(.is-style-section_ttl) {
  position: relative;
  padding-left: calc(var(--swl-h2-margin--x, 0px) * -1);
  padding-right: calc(var(--swl-h2-margin--x, 0px) * -1);
  padding-bottom: 0.5em;
  border-bottom: 1px solid #DFE2EA;
}
h2.wp-block-heading:not(.is-style-section_ttl)::before {
  content: "";
  position: absolute;
  top: calc(0.7em - 4px);
  left: 0;
  display: block;
  width: 8px;
  height: auto;
  aspect-ratio: 1;
  background-color: var(--current_corp_color, #002337);
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  h2.wp-block-heading:not(.is-style-section_ttl)::before {
    top: calc(0.7em - 3px);
    width: 6px;
  }
}

h3.wp-block-heading:not(.is-style-section_ttl) {
  padding-bottom: 0.5em;
  border-bottom: 1px solid #DFE2EA;
}

h4.wp-block-heading:not(.is-style-section_ttl) {
  margin-left: var(--swl-h2-margin--x, 0px);
  margin-right: var(--swl-h2-margin--x, 0px);
  padding-left: calc(var(--swl-h2-margin--x, 0px) * -1);
  padding-right: calc(var(--swl-h2-margin--x, 0px) * -1);
}
h4.wp-block-heading:not(.is-style-section_ttl)::before {
  content: "";
  position: absolute;
  top: calc(0.6em - 1px);
  left: 0;
  display: block;
  width: 8px;
  height: 2px;
  background-color: var(--current_corp_color, #002337);
}
@media screen and (max-width: 600px) {
  h4.wp-block-heading:not(.is-style-section_ttl)::before {
    width: 6px;
  }
}

.wp-block-media-text.is-style-default .wp-block-media-text__media img {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
}

.embed-google-map {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
}

.wp-block-table.is-style-simple th::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--current_corp_color, #002337);
}

.wp-block-table.is-style-simple th,
.wp-block-table.is-style-simple td {
  padding: 1.25em 0;
}
@media screen and (min-width: 961px) {
  .wp-block-table.is-style-simple td {
    padding-left: 0.75em;
  }
}

.wp-block-table.is-style-simple tr:first-of-type th,
.wp-block-table.is-style-simple tr:first-of-type td {
  border-top: none;
}

/*--------------------------------
 *  その他
--------------------------------*/
#autozip {
  display: none !important;
}