/* マンション管理 office-y */

/* windows Chrome対策 */
.l-body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif !important;
}

/* reCAPTCHA非表示 */
.grecaptcha-badge {
  visibility: hidden;
}

/* 変数 */
body {
  --font-main: "FOT-マティス Pro M", serif;
  --font-en: "FrutigerNeueLTW1G-Medium", sans-serif;
  --font-italic: "TimesNRMTPro-MediumIt", serif;
  --ci_blue: #0070bd;
}

/* リストの丸数字が飛び出してしまうエラーを修正 */
.is-style-sme-ordered-list-circle {
  margin-left: auto;
}

/* 右端のページへ戻るを角丸 */
.c-page-top {
  border-radius: 50%;
}

/* テキスト均等揃え */
.txt-j {
  text-align: justify;
  text-justify: inter-ideograph;
}
.txt-center {
  text-align: center !important;
}
.txt-bold {
  font-weight: 600;
}
.txt-li {
  list-style: none;
}
.txt-lb {
  margin-left: 0.5em;
}
.txt-right {
  text-align: right;
}
.txt-mb_s {
  margin-bottom: 1.2em;
}
.txt-mb_m {
  margin-bottom: 1.5em;
}
.txt-mb_l {
  margin-bottom: 2em;
}
.txt-ad {
  font-style: normal !important;
}
.txt-inline {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
}
.txt-space {
  letter-spacing: 0.2em;
}

/* リンク装飾 */
.link-deco-none {
  text-decoration: none;
}
.link-hover:hover {
  opacity: 0.8;
}

/* コピーライトの色を変更 */
.l-footer .c-copyright {
  background-color: #fff;
  color: #000;
  text-align: center;
}

/* フッターの色を変更 */
.l-footer {
  border-top: none;
}
.l-footer-widget-area {
  padding-top: 30px;
  background-color: #f5f3f2;
}

/* フェードイン設定 */
.fadein {
  opacity: 0;
  transition: all 1500ms;
  transform: translate(0, 100px);
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* アニメーション設定 */
@keyframes slideTextFade {
  0%,
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.swiper-slide-active .slider-txt {
  animation: slideTextFade 5s ease 0s 1 normal;
}

.category-5 .c-entry-summary__term {
  display: none;
}

/* PC ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
@media screen and (min-width: 1024px) {
  /* PC時に改行をなくす */
  .br_sp {
    display: none;
  }
  .br_tab {
    display: none;
  }

  /* マージン */
  .mt-ss {
    margin-top: 20px !important;
  }
  .mt-s {
    margin-top: 40px !important;
  }
  .mt-m {
    margin-top: 60px !important;
  }
  .mt-l {
    margin-top: 80px !important;
  }

  .mb-ss {
    margin-bottom: 20px !important;
  }
  .mb-s {
    margin-bottom: 40px !important;
  }
  .mb-m {
    margin-bottom: 60px !important;
  }
  .mb-l {
    margin-bottom: 80px !important;
  }

  /* ヘッダー */
  .l-header {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.4)
    );
  }
  .c-navbar__item > a > span {
    font-size: 18px;
  }
  .c-navbar {
    margin-right: 120px;
  }
  .header__button {
    display: flex;
    align-items: center;
    position: absolute;
    text-align: center;
    font-size: 18px;
    background: linear-gradient(to right, #00abeb 0%, #0065b4 100%);
    color: #fff;
    padding: 0 20px;
    line-height: 1.3em;
    right: 0;
    bottom: 0;
    height: 100%;
    font-weight: 600;
  }
  .header__button:hover {
    background: linear-gradient(to left, #00abeb 0%, #0065b4 100%);
  }

  /* 共通 ------------ */

  /* 固定ページのデフォルトファイキャッチ画像の幅を変える */
  .c-page-header[data-has-image="true"] {
    height: 400px !important;
  }

  /* ヘッダー 固定ページのタイトルを変える */
  .c-page-header__title {
    position: relative;
    letter-spacing: 0.2em;
    color: #fff;
    font-size: 40px;
    line-height: 1em;
    font-family: var(--font-main);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5),
      -2px 2px 10px rgba(0, 0, 0, 0.5), 2px -2px 10px rgba(0, 0, 0, 0.5),
      -2px -2px 10px rgba(0, 0, 0, 0.5);
  }
  .c-page-header__title:before {
    content: "";
    position: absolute;
    bottom: -20px;
    display: inline-block;
    width: 60px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
  }

  /* タイトル */
  .title-h2 {
    text-align: center;
  }
  .title__h2 {
    position: relative;
    font-size: 40px;
    font-family: var(--font-main);
    line-height: 1.2em;
  }
  .title__h2--en {
    color: var(--ci_blue);
    font-size: 18px;
    font-family: var(--font-italic);
  }
  h3.title__h3 {
    position: relative;
    padding-bottom: 5px;
    border-bottom: solid 2px #d5e8f7;
    letter-spacing: 0.1em;
    font-size: 28px;
    font-family: var(--font-main);
  }
  h3.title__h3:after {
    position: absolute;
    bottom: -2px;
    display: block;
    width: 150px;
    border-bottom: solid 2px var(--ci_blue);
    content: " ";
  }
  h3.title__h3::first-letter {
    font-size: 50px;
    font-style: italic;
    font-family: var(--font-italic);
    color: var(--ci_blue);
    line-height: 1em;
  }

  /* トップ スライダー */
  .swiper {
    margin-top: -48px !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    max-width: none !important;
  }
  .slider-img {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
  .slider-txt {
    z-index: 2;
    position: absolute;
  }
  .slider-en {
    font-family: var(--font-en);
    font-size: 7vw;
    line-height: 1em;
    color: #fff;
    margin-bottom: 20px;
  }
  .slider-jp {
    font-weight: 600;
    font-size: 2vw;
    font-family: var(--font-main);
    color: #fff;
  }
  .slider-title {
    font-family: var(--font-main);
    font-size: 5vw;
    color: yellow;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5),
      -5px 5px 10px rgba(0, 0, 0, 0.5), 5px -5px 10px rgba(0, 0, 0, 0.5),
      -5px -5px 10px rgba(0, 0, 0, 0.5);
  }
  .slider-txt-left {
    left: 5vw;
    top: 50%;
    transform: translateY(-50%);
  }
  .slider-txt-center {
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translateY(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  /* トップページ スクロールボタン */
  .scroll {
    position: absolute;
    right: 30px;
    bottom: 0;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    padding: 10px 10px 110px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 16px;
    font-family: var(--font-en);
    line-height: 1;

    writing-mode: vertical-lr;
  }
  .scroll::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #fff;
    content: "";
  }
  .scroll::after {
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  }

  /* トップリスト */
  .top-list__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
  }
  .top-list__item::after {
    content: "";
    width: 60px;
    height: 60px;
    border-top: solid 5px #555;
    border-right: solid 5px #555;
    transform: translate(-50%, -50%) rotate(135deg);
    position: absolute;
    bottom: -90px;
    left: 50%;
  }
  .top-list__img {
    width: 500px;
  }
  .top-list__txt {
    width: calc(100% - 540px);
    font-size: 28px;
    line-height: 2em;
  }
  .top-list__li li {
    position: relative;
  }
  .top-list__li li::before {
    position: absolute;
    content: "";
    background: url(/wp-content/uploads/2025/06/icon-check.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    width: 40px;
    height: 38px;
    top: 5px;
    left: -40px;
  }
  .top-list__lead {
    background-color: #eae5e3;
    padding: 25px 0;
    font-family: var(--font-main);
    font-size: 36px;
    text-align: center;
  }
  .top-list__note {
    font-family: sans-serif;
    font-size: 28px;
    margin-top: 20px;
    font-feature-settings: "palt";
  }

  /* 挨拶 */
  .greeting {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
  }
  .greeting__img {
    width: 320px;
    height: 400px;
    object-fit: cover;
  }
  .greeting__job {
    padding: 5px 10px;
    background-color: #555;
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 600;
    vertical-align: 5px;
  }
  .greeting__name {
    margin-top: 10px;
    text-align: center;
    font-size: 30px;
    font-family: var(--font-main);
    line-height: 1.5em;
  }
  .greeting__txt {
    width: calc(100% - 350px);
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 17px;
    line-height: 2em;
  }
  .greeting__prof {
    margin-top: 30px;
    border: solid 2px #555;
    background-color: #fff;
  }
  .greeting__lead {
    padding: 5px 0 5px 10px;
    background-color: #555;
    color: #fff;
    font-size: 17px;
  }
  .greeting__prof--txt {
    padding: 10px 0;
    text-align: center;
  }

  /* フッター */
  .footer {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
  }
  .footer__logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
  }
  .footer__img {
    width: 500px;
    height: auto;
  }
  .footer__day {
    margin-left: 1em;
  }
} /* PC終了 */

/* タブレット ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
@media screen and (min-width: 520px) and (max-width: 1023px) {
  /* タブレット時に改行をなくす */
  .br_sp {
    display: none;
  }
  .br_pc {
    display: none;
  }

  /* マージン */
  .mt-ss {
    margin-top: 10px !important;
  }
  .mt-s {
    margin-top: 30px !important;
  }
  .mt-m {
    margin-top: 50px !important;
  }
  .mt-l {
    margin-top: 70px !important;
  }

  .mb-ss {
    margin-bottom: 10px !important;
  }
  .mb-s {
    margin-bottom: 30px !important;
  }
  .mb-m {
    margin-bottom: 50px !important;
  }
  .mb-l {
    margin-bottom: 70px !important;
  }

  .top-news {
    width: 80vw;
    margin: 0 auto;
  }
  .top-news .smb-media-text__figure {
    display: none;
  }

  /* 共通 ------------ */

  /* 固定ページのデフォルトファイキャッチ画像の幅を変える */
  .c-page-header[data-has-image="true"] {
    height: 250px !important; /*変更*/
  }

  /* ヘッダー 固定ページのタイトルを変える */
  .c-page-header__title {
    position: relative;
    letter-spacing: 0.2em;
    color: #fff;
    font-size: 38px; /*変更*/
    line-height: 1em;
    font-family: var(--font-main);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5),
      -2px 2px 10px rgba(0, 0, 0, 0.5), 2px -2px 10px rgba(0, 0, 0, 0.5),
      -2px -2px 10px rgba(0, 0, 0, 0.5);
  }
  .c-page-header__title:before {
    content: "";
    position: absolute;
    bottom: -20px;
    display: inline-block;
    width: 55px; /*変更*/
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
  }

  /* タイトル */
  .title-h2 {
    text-align: center;
  }
  .title__h2 {
    position: relative;
    font-size: 34px; /*変更*/
    font-family: var(--font-main);
    line-height: 1.2em;
  }
  .title__h2--en {
    color: var(--ci_blue);
    font-size: 17px; /*変更*/
    font-family: var(--font-italic);
  }
  h3.title__h3 {
    position: relative;
    padding-bottom: 5px;
    border-bottom: solid 2px #d5e8f7;
    letter-spacing: 0.1em;
    font-size: 28px;
    font-family: var(--font-main);
  }
  h3.title__h3:after {
    position: absolute;
    bottom: -2px;
    display: block;
    width: 150px;
    border-bottom: solid 2px var(--ci_blue);
    content: " ";
  }
  h3.title__h3::first-letter {
    font-size: 50px;
    font-style: italic;
    font-family: var(--font-italic);
    color: var(--ci_blue);
    line-height: 1em;
  }

  /* トップ スライダー */
  .swiper {
    margin-top: -48px !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    max-width: none !important;
  }
  .slider-img {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 60vh; /*変更*/
    object-fit: cover;
  }
  .slider-txt {
    z-index: 2;
    position: absolute;
  }
  .slider-en {
    font-family: var(--font-en);
    font-size: 7vw;
    line-height: 1em;
    color: #fff;
    margin-bottom: 20px;
  }
  .slider-jp {
    font-weight: 600;
    font-size: 3vw; /*変更*/
    font-family: var(--font-main);
    color: #fff;
  }
  .slider-title {
    font-family: var(--font-main);
    font-size: 7vw; /*変更*/
    color: yellow;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5),
      -5px 5px 10px rgba(0, 0, 0, 0.5), 5px -5px 10px rgba(0, 0, 0, 0.5),
      -5px -5px 10px rgba(0, 0, 0, 0.5);
  }
  .slider-txt-left {
    left: 5vw;
    top: 50%;
    transform: translateY(-50%);
  }
  .slider-txt-center {
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translateY(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  /* トップページ スクロールボタン */
  .scroll {
    position: absolute;
    right: 30px;
    bottom: 0;
    z-index: 2;
    display: inline-block;
    overflow: hidden;
    padding: 10px 10px 110px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 16px;
    font-family: var(--font-en);
    line-height: 1;

    writing-mode: vertical-lr;
  }
  .scroll::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background: #fff;
    content: "";
  }
  .scroll::after {
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  }

  /* トップリスト */
  .top-list__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
  }
  .top-list__item::after {
    content: "";
    width: 50px; /*変更*/
    height: 50px; /*変更*/
    border-top: solid 5px #555;
    border-right: solid 5px #555;
    transform: translate(-50%, -50%) rotate(135deg);
    position: absolute;
    bottom: -80px; /*変更*/
    left: 50%;
  }
  .top-list__img {
    width: 400px; /*変更*/
    height: auto; /*追加*/
  }
  .top-list__txt {
    width: calc(100% - 410px); /*変更*/
    font-size: 22px; /*変更*/
    line-height: 2em;
  }
  .top-list__li li {
    position: relative;
  }
  .top-list__li li::before {
    position: absolute;
    content: "";
    background: url(/wp-content/uploads/2025/06/icon-check.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    width: 30px; /*変更*/
    height: 28px; /*変更*/
    top: 5px;
    left: -35px; /*変更*/
  }
  .top-list__lead {
    background-color: #eae5e3;
    padding: 25px 0;
    font-family: var(--font-main);
    font-size: 26px; /*変更*/
    line-height: 1.2em; /*追加*/
    text-align: center;
  }
  .top-list__note {
    font-family: sans-serif;
    font-size: 22px; /*変更*/
    margin-top: 20px;
    font-feature-settings: "palt";
  }

  /* 挨拶 */
  .greeting {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
  }
  .greeting__img {
    width: 320px;
    height: 400px;
    object-fit: cover;
  }
  .greeting__job {
    padding: 5px 10px;
    background-color: #555;
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 600;
    vertical-align: 5px;
  }
  .greeting__name {
    margin-top: 10px;
    text-align: center;
    font-size: 30px;
    font-family: var(--font-main);
    line-height: 1.5em;
  }
  .greeting__txt {
    width: calc(100% - 350px);
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 17px;
    line-height: 2em;
  }
  .greeting__prof {
    margin-top: 30px;
    border: solid 2px #555;
    background-color: #fff;
  }
  .greeting__lead {
    padding: 5px 0 5px 10px;
    background-color: #555;
    color: #fff;
    font-size: 17px;
  }
  .greeting__prof--txt {
    padding: 10px 10px; /*変更*/
  }

  /* フッター */
  .footer {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
  }
  .footer__logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
  }
  .footer__img {
    width: 500px;
    height: auto;
  }
} /* タブレット終了 */

/* スマホ ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● */
@media screen and (max-width: 519px) {
  /* スマホ時に改行をなくす */
  .br_pc {
    display: none;
  }
  .br_tab {
    display: none;
  }

  /* マージン */
  .mt-ss {
    margin-top: 15px !important;
  }
  .mt-s {
    margin-top: 25px !important;
  }
  .mt-m {
    margin-top: 45px !important;
  }
  .mt-l {
    margin-top: 65px !important;
  }

  .mb-ss {
    margin-bottom: 15px !important;
  }
  .mb-s {
    margin-bottom: 25px !important;
  }
  .mb-m {
    margin-bottom: 45px !important;
  }
  .mb-l {
    margin-bottom: 65px !important;
  }

  .top-news .smb-media-text__figure {
    display: none;
  }

  /* モバイルメニューの天地 */
  .l-header__content {
    padding-top: 5px !important;
    padding-bottom: 8px !important;
  }

  .title__h3--palt {
    font-feature-settings: "palt";
  }

  /* 共通 ------------ */

  /* 固定ページのデフォルトファイキャッチ画像の幅を変える */
  .c-page-header[data-has-image="true"] {
    height: 180px !important;
  }

  /* ヘッダー 固定ページのタイトルを変える */
  .c-page-header__title {
    position: relative;
    letter-spacing: 0.2em;
    color: #fff;
    font-size: 34px; /*変更*/
    line-height: 1em;
    font-family: var(--font-main);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5),
      -2px 2px 10px rgba(0, 0, 0, 0.5), 2px -2px 10px rgba(0, 0, 0, 0.5),
      -2px -2px 10px rgba(0, 0, 0, 0.5);
  }
  .c-page-header__title:before {
    content: "";
    position: absolute;
    bottom: -15px; /*変更*/
    display: inline-block;
    width: 50px; /*変更*/
    height: 2px; /*変更*/
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
  }

  /* タイトル */
  .title-h2 {
    text-align: center;
  }
  .title__h2 {
    position: relative;
    font-size: 32px; /*変更*/
    font-family: var(--font-main);
    line-height: 1.2em;
  }
  .title__h2--en {
    color: var(--ci_blue);
    font-size: 16px; /*変更*/
    font-family: var(--font-italic);
  }
  h3.title__h3 {
    position: relative;
    padding-bottom: 5px;
    border-bottom: solid 2px #d5e8f7;
    font-size: 23px; /*変更*/
    font-family: var(--font-main);
  }
  h3.title__h3:after {
    position: absolute;
    bottom: -2px;
    display: block;
    width: 100px /*変更*/;
    border-bottom: solid 2px var(--ci_blue);
    content: " ";
  }
  h3.title__h3::first-letter {
    font-size: 40px; /*変更*/
    font-style: italic;
    font-family: var(--font-italic);
    color: var(--ci_blue);
    line-height: 1em;
  }

  /* トップ スライダー */
  .swiper {
    margin-top: -44px !important; /*変更*/
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    max-width: none !important;
  }
  .slider-img {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 70vh; /*変更*/
    object-fit: cover;
  }
  .slider-img-sf {
    object-position: right; /*追加*/
  }
  .slider-txt {
    z-index: 2;
    position: absolute;
  }
  .slider-en {
    font-family: var(--font-en);
    font-size: 8vw; /*変更*/
    line-height: 1em;
    color: #fff;
    margin-bottom: 20px;
  }
  .slider-jp {
    font-weight: 600;
    font-size: 4.5vw; /*変更*/
    font-family: var(--font-main);
    color: #fff;
  }
  .slider-title {
    font-family: var(--font-main);
    font-size: 8vw; /*変更*/
    color: yellow;
  }
  .slider-txt-left {
    left: 5vw;
    top: 80px; /*変更*/
  }
  .slider-txt-center {
    width: 100%;
    text-align: center;
    top: 80px; /*変更*/
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important; /*追加*/
  }

  /* トップページ スクロールボタン */
  .scroll {
    display: none;
  }

  /* トップリスト */
  .top-list__item {
    position: relative;
    display: flex;
    flex-wrap: wrap-reverse; /*追加*/
    justify-content: center; /*変更*/
    margin-bottom: 60px; /*変更*/
  }
  .top-list__item::after {
    content: "";
    width: 40px; /*変更*/
    height: 40px; /*変更*/
    border-top: solid 3px #555; /*変更*/
    border-right: solid 3px #555; /*変更*/
    transform: translate(-50%, -50%) rotate(135deg);
    position: absolute;
    bottom: -50px; /*変更*/
    left: 50%;
  }
  .top-list__img {
    width: 100%; /*変更*/
    height: auto; /*追加*/
    margin-bottom: 20px; /*追加*/
  }
  .top-list__txt {
    width: 100%; /*変更*/
    font-size: clamp(17px, 5.5vw, 22px); /*変更*/
    line-height: 1.8em; /*変更*/
  }
  .top-list__li li {
    position: relative;
  }
  .top-list__li li::before {
    position: absolute;
    content: "";
    background: url(/wp-content/uploads/2025/06/icon-check.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    width: 25px; /*変更*/
    height: 24px; /*変更*/
    top: 3px; /*変更*/
    left: -30px; /*変更*/
  }
  .top-list__lead {
    line-height: 1.2em; /*追加*/
    background-color: #eae5e3;
    padding: 10px; /*変更*/
    font-family: var(--font-main);
    font-size: 22px; /*変更*/
    text-align: center;
  }
  .top-list__note {
    font-family: sans-serif;
    font-size: 18px; /*変更*/
    margin-top: 20px;
    font-feature-settings: "palt";
  }

  /* 挨拶 */
  .greeting {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /*変更*/
    margin: 0 auto;
  }
  .greeting__img {
    width: 100%; /*変更*/
    height: 280px; /*変更*/
    object-fit: cover;
  }
  .greeting__job {
    padding: 5px 10px;
    background-color: #555;
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 600;
    vertical-align: 5px;
  }
  .greeting__name {
    margin-top: 10px;
    text-align: center;
    font-size: 30px;
    font-family: var(--font-main);
    line-height: 1.5em;
    margin-bottom: 20px; /*追加*/
  }
  .greeting__txt {
    width: 100%; /*変更*/
    text-align: justify;
    text-justify: inter-ideograph;
    font-size: 16px; /*変更*/
    line-height: 2em;
  }
  .greeting__prof {
    margin-top: 30px;
    border: solid 2px #555;
    background-color: #fff;
  }
  .greeting__lead {
    padding: 5px 0 5px 10px;
    background-color: #555;
    color: #fff;
    font-size: 16px; /*変更*/
  }
  .greeting__prof--txt {
    padding: 10px; /*変更*/
  }

  /* フッター */
  .footer {
    display: flex;
    justify-content: center; /*変更*/
    flex-wrap: wrap; /*追加*/
    font-size: 16px;
  }
  .footer__logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
  }
  .footer__txt {
    text-align: center; /*追加*/
    width: 100%; /*追加*/
    margin-bottom: 20px; /*追加*/
  }
  .footer__img {
    width: 100%; /*追加*/
    height: auto;
  }
} /* スマホ終了 */

@font-face {
  font-family: "iconfont";
  src: url("fonts/iconfont.eot?xupado");
  src: url("fonts/iconfont.eot?xupado#iefix") format("embedded-opentype"),
    url("fonts/iconfont.ttf?xupado") format("truetype"),
    url("fonts/iconfont.woff?xupado") format("woff"),
    url("fonts/iconfont.svg?xupado#iconfont") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "iconfont" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-envelope-o:before {
  content: "\f003";
}
.icon-heart:before {
  content: "\f004";
}
.icon-home:before {
  content: "\f015";
}
.icon-chevron-right:before {
  content: "\f054";
}
.icon-facebook-square:before {
  content: "\f082";
}
.icon-external-link:before {
  content: "\f08e";
}
.icon-phone:before {
  content: "\f095";
}
.icon-phone-square:before {
  content: "\f098";
}
.icon-twitter:before {
  content: "\f099";
}
.icon-arrow-circle-right:before {
  content: "\f0a9";
}
.icon-chain:before {
  content: "\f0c1";
}
.icon-link:before {
  content: "\f0c1";
}
.icon-envelope:before {
  content: "\f0e0";
}
.icon-angle-right:before {
  content: "\f105";
}
.icon-chevron-circle-right:before {
  content: "\f138";
}
.icon-youtube-play:before {
  content: "\f16a";
}
.icon-instagram:before {
  content: "\f16d";
}
.icon-paw:before {
  content: "\f1b0";
}
.icon-paper-plane:before {
  content: "\f1d8";
}
.icon-send:before {
  content: "\f1d8";
}
.icon-facebook-official:before {
  content: "\f230";
}
.icon-telegram:before {
  content: "\f2c6";
}
