@charset "UTF-8";
/* SCSSの読み込み */
@import url(all.css);
/*===============================
  カラー変数
=================================*/
/*===============================
  フォント変数
=================================*/
/* font-family */
/* font-weight */
/* 行間削除 */
/*===============================
  パターン変数
=================================*/
:root {
  /* カラー */
  --color-text: #1f1f1f;
  --color-text-gray: #727272;
  --color-text-blue: #0074b6;
  --color-text-orange: #f7b006;
  --color-white: #fff;
  --color-blue: #2aa9f1;
  --color-blue-sky: #6fc6f7;
  --color-blue-light: #9fdafc;
  --color-yellow: #fed967;
  --color-bg-blue: #e4f3fc;
  --color-bg-yellow: #fff0c2;
  --color-bg-gray: #f1f1f1;
  /* font-family */
  --font-family-noto: "Noto Sans JP", sans-serif;
  --font-family-kaisei: "Kaisei Decol", serif;
  /* font-weight */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  /* 背景パターン */
  --pattern-white: url(../img/common/pt-white.jpg);
  --pattern-blue: url(../img/common/pt-blue.jpg);
  --pattern-orange: url(../img/common/pt-orange.jpg);
  --pattern-yellow: url(../img/common/pt-yellow.png);
}

@media screen and (min-width: 768px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 4.6rem;
    --font-size-h2: 4rem;
    --font-size-h3: 3rem;
    --font-size-h4: 2rem;
    --font-size-h5: 1.8rem;
    --font-size-base: 1.6rem;
    --font-size-sm: 1.4rem;
    --font-size-xs: 1.2rem;
    /* line-height */
    --line-height-h1: 1;
    --line-height-h2: 1.25;
    --line-height-h3: 1;
    --line-height-h4: 1;
    --line-height-h5: 1.5;
    --line-height-h6: 1.5;
    --line-height-base: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.6666667;
    /* letter-spacing */
    --letter-spacing-base: 0em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /* フォントサイズ */
    --font-size-h1: 2em;
    --font-size-h2: 1.75em;
    --font-size-h3: 1.5625em;
    --font-size-h4: 1.375em;
    --font-size-h5: 1.25em;
    --font-size-h6: 1.125em;
    --font-size-base: 1em;
    --font-size-sm: 0.875em;
    --font-size-xs: 0.75em;
    /* line-height */
    --line-height-title: 1.5;
    --line-height-base: 1.875;
    --line-height-sm: 1.714286;
    --line-height-xs: 1.666667;
    /* letter-spacing */
    --letter-spacing-base: 0.06em;
  }
}
/*===============================================
  切り替え用
===============================================*/
.pc-none {
  display: none !important;
}

a[href^="tel:"] {
  pointer-events: none;
}

/*===============================================
  ページネーション
===============================================*/
.pagenation {
  font-size: var(--font-size-base);
  padding-top: 3em;
}
.pagenation li {
  width: 36px;
  line-height: 40px;
  margin: 5px 4px 0;
}

/*===============================================
  詳細ページ前後
===============================================*/
.paginated__list {
  margin-top: 3.5em;
}
.paginated__link--prev .paginated__link-txt::before {
  margin-right: 1em;
}
.paginated__link--next .paginated__link-txt::after {
  margin-left: 1em;
}

/*===============================================
  wrapper
===============================================*/
#wrapper {
  min-width: 1200px;
  font-size: var(--font-size-base);
}

/*===============================================
  header
===============================================*/
#header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  padding: clamp(12px, 0.9375vw, 18px) clamp(20px, 1.5625vw, 30px);
}
#header .header__logo img {
  height: clamp(70px, 4.375vw, 84px);
}
#header .header__right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  font-size: clamp(1.3rem, 0.8333333333vw, 1.6rem);
  row-gap: 1em;
}
#header .header__other {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: clamp(20px, 1.5625vw, 30px);
       column-gap: clamp(20px, 1.5625vw, 30px);
}
#header .header__mail {
  width: 13.125em;
  height: clamp(42px, 2.6041666667vw, 50px);
}

/*===============================================
  footer
===============================================*/
#footer {
  padding: 90px 0;
}
#footer .footer__inner {
  display: grid;
  grid-template: auto 1fr/auto auto;
  justify-content: space-between;
  align-items: flex-start;
  grid-auto-flow: column;
  width: 1080px;
}
#footer .footer__other {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 40px;
  grid-row: span 2;
}
#footer .footer__logo {
  width: 290px;
}
#footer .footer__info {
  font-size: var(--font-size-sm);
  line-height: 1.85715;
  margin-block: calc((1em - 1lh) / 2);
}
#footer .footer__links {
  display: grid;
  grid-template-columns: repeat(2, 190px);
  gap: 20px;
}
#footer .footer__links dt {
  grid-column: span 2;
}
#footer .footer__links dt span {
  width: 90px;
  font-size: var(--font-size-sm);
  line-height: 2.07143;
  border-radius: 6px;
}
#footer .footer__links .com-btn {
  height: 50px;
}
#footer .copy {
  padding: 55px 0 0;
  margin-top: auto;
}
#footer .copy p {
  text-align: right;
}

/*フッターナビ
-----------------------------*/
.footer-nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  -moz-column-gap: 45px;
       column-gap: 45px;
}
.footer-nav__list, .footer-nav__sub-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 38px;
}
.footer-nav__item, .footer-nav__sub-item {
  width: 100%;
  margin-block: calc((1em - 1lh) / 2);
}
.footer-nav__link::before, .footer-nav__sub-link::before {
  content: "・";
  color: var(--color-blue);
}
.footer-nav__link.nav-link--entrance, .footer-nav__sub-link.nav-link--entrance {
  color: var(--color-text-blue);
}

/*コピーライト
-----------------------------*/
.copy {
  padding: 30px 0 20px;
}
.copy p {
  font-size: var(--font-size-sm);
  margin-block: calc((1em - 1lh) / 2);
}

/*===============================================
  fixed固定
===============================================*/
/*サイドボタン
-----------------------------*/
#side {
  width: clamp(90px, 6.25vw, 120px);
  aspect-ratio: 1;
  text-align: center;
  font-size: clamp(1.2rem, 0.8333333333vw, 1.6rem);
  line-height: 1.5;
  text-shadow: 2px 1px var(--color-text-orange);
  border-radius: 50%;
  bottom: 30px;
  right: clamp(5px, 5vw - 66px, 30px);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
}
#side .b {
  font-size: 1.25em;
  line-height: 1.2;
}
#side::before {
  width: 66.667%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*===============================================
  visual
===============================================*/
/*メインビジュアル
-----------------------------*/
.visual__main {
  max-width: 1920px;
  height: clamp(530px, 41.1458333333vw, 790px);
  margin: 0 auto;
}
.visual__main::before {
  width: 70.834%;
  right: clamp(-60px, -3.125vw, -40px);
  border-radius: clamp(40px, 3.125vw, 60px);
}
.visual__main-catch {
  width: 35.15625%;
  margin-left: clamp(50px, 3.6458333333vw, 70px);
}

/*サブビジュアル
-----------------------------*/
.visual__sub {
  width: calc(100% - clamp(40px, 3.125vw, 60px));
  max-width: 1780px;
  height: clamp(310px, 23.9583333333vw, 460px);
  margin-inline: auto;
}
.visual__sub::before {
  width: 69.102%;
  min-width: 810px;
  border-radius: clamp(40px, 3.125vw, 60px);
}
.visual__sub-catch {
  width: 37.641%;
  min-width: 450px;
  font-size: clamp(3.2rem, 2.3958333333vw, 4.6rem);
  border-radius: clamp(12px, 0.8333333333vw, 16px);
  padding: clamp(18px, 1.40625vw, 27px);
  text-shadow: 3px 2px var(--color-white);
}

/*===============================================
  グローバルナビ
===============================================*/
.gnav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: var(--line-height-base);
  margin-block: calc((1em - 1lh) / 2);
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.gnav__link {
  display: block;
}
.gnav__link:hover {
  color: var(--color-blue);
}
.gnav__link.current {
  color: var(--color-blue-light);
}

/*===============================================
  main#container
===============================================*/
#container {
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
}
#container:not(:has(.com-contact))::after {
  height: 10px;
}

/*===============================================
  パンくずリスト
===============================================*/
.breadcrumb {
  height: 40px;
}
.breadcrumb__list {
  width: 1080px;
}
.breadcrumb__item {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-base);
}
.breadcrumb + .section::before {
  width: calc(100% - 20px);
  max-width: 1260px;
  height: 174px;
}

/*===============================================
  main共通
===============================================*/
.section {
  padding: clamp(100px, 7.7922077922vw, 120px) 0;
}
.section--brick::after {
  width: 96%;
  max-width: 1600px;
  height: calc(100% - 66px);
  background-size: clamp(205px, 15.9895833333vw, 307px);
  top: 170px;
}
.section--sofa::before {
  width: 96.875%;
  max-width: 1860px;
  height: clamp(80px, 6.25vw, 120px);
  top: clamp(236px, 18.4375vw, 354px);
}
.section--plant-clock::before {
  width: calc(100% - 20px);
  max-width: 1260px;
  height: clamp(180px, 14.0606060606vw, 232px);
}

.inbox {
  width: 1080px;
}

/*電話番号
-----------------------------*/
.com-tel {
  row-gap: 0.75em;
}
.com-tel-num::before {
  width: max(21px, 1.5625em);
  margin-right: 10px;
}
.com-tel-num span {
  font-size: max(2.8rem, 2.125em);
  line-height: 0.70589;
  margin-top: -0.05em;
}
.com-tel .com-replace {
  font-size: max(12px, 0.875em);
}

/*ボタン
-----------------------------*/
.com-btn {
  width: 400px;
  height: 80px;
}
.com-btn::after {
  width: 7px;
  right: 20px;
}
.com-btn--mail::before {
  width: 1.375em;
  margin-right: 10px;
}

/*テーブル
-----------------------------*/
.com-table tr th {
  padding: 12px 0;
}
.com-table tr td {
  padding: 12px 0;
}

/*テキストボックス
-----------------------------*/
.com-text p {
  margin-right: calc(var(--letter-spacing-base) * -1);
}
.com-text strong {
  font-size: var(--font-size-h4);
  line-height: 2;
}
.com-text .mb {
  margin-bottom: calc(var(--line-height-base) * 1em);
}

/*SB未記入テキスト
-----------------------------*/
.com-empty {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  padding: 2.5em 0;
}

/*===============================================
  タイトル
===============================================*/
/*大タイトル
-----------------------------*/
.com-title01 {
  font-size: var(--font-size-h2);
  margin-bottom: 70px;
}
.com-title01 .en {
  font-size: 0.5em;
  margin-bottom: 1.2em;
}
.com-title01 .en::before {
  min-width: 56px;
  height: 1.5em;
  margin-bottom: 0.3em;
}
.com-title01 .ja {
  line-height: var(--line-height-h2);
  text-shadow: 3px 2px var(--color-blue-light);
}

/*中タイトル
-----------------------------*/
.com-title02 {
  font-size: var(--font-size-h4);
  margin-bottom: 40px;
}
.com-title02 > span {
  line-height: var(--line-height-h4);
}

/*小タイトル
-----------------------------*/
.com-title03 {
  font-size: var(--font-size-h5);
  margin-bottom: 20px;
}
.com-title03 > span {
  line-height: var(--line-height-h5);
}

/*===============================================
  共通セクション
===============================================*/
/*お問い合わせ
-----------------------------*/
.com-contact {
  padding: 100px 0;
}
.com-contact::before {
  content: "";
  width: 110%;
  max-width: 1440px;
  height: calc(100% + 20px);
  background: url(../img/common/plant.png) no-repeat left 90px top, url(../img/common/contact_deco-rt.png) no-repeat right 60px top 60px, url(../img/common/contact_deco-lb.png) no-repeat left bottom, url(../img/common/contact_deco-rb.png) no-repeat right 130px bottom 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 0;
}
.com-contact__inner {
  display: grid;
  grid-template-columns: auto 780px;
  align-items: center;
  justify-content: space-between;
}
.com-contact__title {
  margin-bottom: 0;
}
.com-contact__box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  gap: 40px;
  padding: 50px;
  border-radius: 30px;
}
.com-contact__mail {
  width: 340px;
}

/*物件探しのお悩み解決事例
-----------------------------*/
.com-case__item {
  display: grid;
  align-items: center;
  grid-template-columns: 150px 1fr 150px;
  gap: 40px;
  padding: 70px;
  border-radius: 30px;
  margin-bottom: 30px;
}
.com-case__inner {
  grid-column: span 2;
}
.com-case__heading {
  margin-bottom: 30px;
}
.com-case__comment {
  grid-column: span 2;
  padding: calc(40px + (1em - 1lh) / 2) 50px;
  margin-right: 10px;
  border-radius: 30px;
}
.com-case__comment::after {
  content: "";
  width: 30px;
  height: 20px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  z-index: -1;
}
.com-case__icon--comment {
  order: 4;
}
.com-case + .com-point {
  margin-top: clamp(-120px, -7.7922077922vw, -100px);
}

/*物件選びのポイント
-----------------------------*/
.com-point::after {
  width: 93.75%;
  max-width: 1800px;
  height: clamp(80px, 6.25vw, 98px);
  bottom: 20px;
}
.com-point__list {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.com-point__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-bottom: 40px;
}
.com-point__image {
  width: 260px;
}
.com-point__inner {
  max-width: calc(100% - 300px);
  padding-left: 60px;
  position: relative;
}
.com-point__inner::before {
  font-size: var(--font-size-h2);
  margin-top: -0.2em;
  position: absolute;
  top: -3px;
  left: 0;
}

/*===============================================
  エントランスページ
===============================================*/
.entrance {
  display: grid;
  grid-template: repeat(2, 1fr)/repeat(2, 1fr);
  gap: clamp(20px, 1.5625vw, 30px);
  max-width: 1920px;
  height: clamp(514px, 40.15625vw, 771px);
  min-height: calc(100vh - 64px - clamp(94px, 6.25vw, 120px));
  padding: 0 clamp(20px, 1.5625vw, 30px) 1px;
  margin-inline: auto;
}
.entrance__link {
  border-radius: clamp(20px, 1.5625vw, 30px);
}
.entrance__link--hidden::after {
  font-size: clamp(2.8rem, 2.0833333333vw, 4rem);
}
.entrance__inner {
  width: 71.039%;
  min-width: 410px;
  height: 37.838%;
  min-height: 100px;
  border-radius: 100vh;
  row-gap: clamp(1rem, 0.78125vw, 1.5rem);
}
.entrance__inner::after {
  width: clamp(20px, 1.5625vw, 30px);
  right: clamp(15px, 1.0416666667vw, 20px);
}
.entrance__sub {
  font-size: clamp(1.4rem, 1.0416666667vw, 2rem);
}
.entrance__text {
  font-size: clamp(2.8rem, 2.0833333333vw, 4rem);
  text-shadow: 0.05em 0.075em var(--color-white);
}

/*===============================================
  トップページ
===============================================*/
/*季節自動更新
-----------------------------*/
.top-season {
  padding: 100px 0;
}
.top-season::before {
  max-width: 1920px;
  height: clamp(38px, 2.9166666667vw, 56px);
}
.top-season::after {
  width: 1080px;
  height: 177px;
  top: 20px;
}
.top-season__inner::before {
  width: 1010px;
  height: 186px;
  bottom: -100px;
}
.top-season__title {
  margin-bottom: 50px;
}
.top-season__title .ja {
  text-shadow: 3px 2px var(--color-white);
}
.top-season__title .mark {
  background: linear-gradient(to top, rgba(254, 217, 103, 0.4) 22px, transparent 22px);
}
.top-season__text {
  text-align: center;
}

/*物件探しでこんなお悩みありませんか？
-----------------------------*/
.top-worries::before {
  width: calc(100% - 20px);
  max-width: 1260px;
  height: 174px;
}
.top-worries__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 110px;
  border-radius: 30px;
  background: #e4e9ec;
}
.top-worries__box::after {
  content: "";
  width: 150px;
  aspect-ratio: 5/2;
  background: #e4e9ec;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  z-index: -1;
}
.top-worries__item {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  padding-left: 1.6em;
  margin-bottom: 1.2em;
}
.top-worries__item::before {
  width: 1em;
}
.top-worries__image {
  text-align: center;
  width: 395px;
  padding-top: 98px;
  background: url(../img/index/bg_worries-img.png) no-repeat center top/contain;
}
.top-worries + .top-consultation {
  margin-top: clamp(-120px, -7.7922077922vw, -100px);
}

/*“そんな時は、SEED東金沢にご相談ください！”
-----------------------------*/
.top-consultation::before {
  height: calc(100% + 93px);
}
.top-consultation::after {
  height: calc(100% + 53px);
  top: -13px;
}
.top-consultation__text {
  text-align: center;
}

/*SEED東金沢の特徴
-----------------------------*/
.top-feature::before {
  top: clamp(120px, 8.8541666667vw, 170px);
}
.top-feature::after {
  width: 90%;
  max-width: 1560px;
  height: clamp(166px, 12.9166666667vw, 248px);
}
.top-feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.top-feature__item {
  padding: 0 50px 50px;
  row-gap: 14px;
}
.top-feature__item::before {
  height: calc(100% - 50px);
}
.top-feature__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 72px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.8;
}
.top-feature__text span {
  background: linear-gradient(to top, var(--color-bg-blue) 0.7em, transparent 0.7em);
}
.top-feature__btn {
  margin: 70px auto 0;
}

/*物件探しのお悩み解決事例をご紹介
-----------------------------*/
.top-case {
  background-size: max(1920px, 100%) 180px;
}
.top-case::after {
  width: 100%;
  max-width: 1800px;
  height: clamp(248px, 19.375vw, 372px);
  background-size: 17.054%, 12.834%;
  right: max(50% - 990px, -1.5625%);
  top: 270px;
}
.top-case__text {
  text-align: center;
}
.top-case__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 70px;
}
.top-case__item {
  aspect-ratio: 520/403;
}
.top-case__item::before {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.top-case__link {
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 20px;
}
.top-case__link-text {
  font-size: var(--font-size-h3);
  text-shadow: 3px 2px var(--color-white);
  padding: 20px 30px;
  border-radius: 16px;
}
.top-case__link-text::after {
  width: 1em;
  margin-left: 0.4em;
}
.top-case + .top-news {
  margin-top: clamp(-120px, -7.7922077922vw, -100px);
}

/*リンクセクション
-----------------------------*/
.top-bnr {
  margin-block: clamp(-120px, -7.7922077922vw, -100px);
}
.top-bnr::before {
  width: calc(100% - 20px);
  max-width: 1260px;
  height: clamp(80px, 6.25vw, 98px);
  top: 42px;
}
.top-bnr__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.top-bnr__link {
  width: 520px;
  height: 190px;
  font-size: var(--font-size-h2);
  text-shadow: 3px 2px var(--color-white);
}
.top-bnr__link > span::before {
  width: 150px;
}
.top-bnr__link::before {
  height: 56px;
}
.top-bnr__link::after {
  width: 50px;
}

/*お知らせ
-----------------------------*/
.top-news__box {
  display: grid;
  grid-template: "title list" auto "btn list" 1fr/290px 1fr;
  gap: 68px 80px;
  align-items: start;
}
.top-news__title {
  margin-bottom: 0;
  grid-area: title;
}
.top-news__list {
  grid-area: list;
  padding-right: 40px;
}
.top-news__item {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-bottom: 20px;
}
.top-news__item:nth-of-type(2n) {
  transform: translateX(40px);
}
.top-news__item-link {
  grid-template-columns: auto 1fr;
  row-gap: 10px;
}
.top-news__item-link > *:not(.top-news__item-title) {
  margin-block: calc((1em - 1lh) / 2);
}
.top-news__item-date {
  padding-left: 40px;
}
.top-news__item-tags {
  -moz-column-gap: 1em;
       column-gap: 1em;
  padding-right: 40px;
}
.top-news__item-title {
  font-size: var(--font-size-base);
  padding: 14px 40px;
  border-radius: 100vh;
}
.top-news__btn {
  grid-area: btn;
}

/*===============================================
  SEED東金沢について
===============================================*/
/*SEED東金沢の特徴
-----------------------------*/
.about-feature__list {
  padding-left: 30px;
}
.about-feature__item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-bottom: 70px;
}
.about-feature__item:nth-of-type(2n) {
  justify-content: flex-start;
  flex-direction: row;
}
.about-feature__image {
  width: 260px;
}
.about-feature__inner {
  max-width: calc(100% - 300px);
  padding-left: 60px;
}
.about-feature__inner::before {
  font-size: var(--font-size-h2);
  margin-top: -0.2em;
  position: absolute;
  top: -3px;
  left: 0;
}

/*スタッフ紹介
-----------------------------*/
.about-staff {
  background-size: max(1920px, 100%) 180px;
}
.about-staff::after {
  width: 100%;
  max-width: 1740px;
  height: clamp(156px, 12.0833333333vw, 232px);
  background-size: 14.196%, 13.276%;
  right: max(50% - 990px, -1.5625%);
  top: 480px;
}
.about-staff__title {
  align-items: flex-start;
  text-align: left;
}
.about-staff__inner {
  min-height: 362px;
  padding: 0 100px 0 610px;
  position: relative;
}
.about-staff__inner:has(+ .about-staff__text) {
  margin-bottom: 120px;
}
.about-staff__heading {
  margin-bottom: 30px;
}
.about-staff__image {
  position: absolute;
  top: 0;
  right: 50%;
}
.about-staff__image img {
  border-radius: 30px;
}
.about-staff__text {
  text-align: center;
}
.about-staff + .about-company {
  margin-top: clamp(-120px, -7.7922077922vw, -100px);
}

/*会社概要
-----------------------------*/
.about-company::before {
  width: calc(100% - 20px);
  max-width: 1260px;
  height: clamp(80px, 6.25vw, 98px);
  top: 42px;
}
.about-company__inner:has(.about-company__map) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.about-company__inner:has(.about-company__map) .about-company__table {
  padding: calc(70px + (1em - 1lh) / 2) 50px;
}
.about-company__inner:has(.about-company__map) .about-company__table th {
  width: 6.25em;
}
.about-company__table {
  padding: calc(70px + (1em - 1lh) / 2) 80px;
  border-radius: 30px;
}
.about-company__table tr th {
  width: 10em;
}
.about-company__table tr td .com-replace {
  font-size: 1em;
  height: 1em;
}
.about-company__map {
  border-radius: 30px;
}

/*===============================================
  受験生の方
===============================================*/
/*セクション名
-----------------------------*/
/*===============================================
  社会人の方
===============================================*/
/*セクション名
-----------------------------*/
/*===============================================
  カップル・新婚さん
===============================================*/
/*セクション名
-----------------------------*/
/*===============================================
  ファミリー
===============================================*/
/*セクション名
-----------------------------*/
/*==================================================
 ニュース一覧
================================================== */
.news-archive__item {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-bottom: 20px;
}
.news-archive__item:nth-of-type(2n) {
  transform: translateX(40px);
}
.news-archive__item-link {
  row-gap: 10px;
}
.news-archive__item-link > *:not(.news-archive__item-title) {
  margin-block: calc((1em - 1lh) / 2);
}
.news-archive__item-date {
  padding-left: 40px;
}
.news-archive__item-tags {
  -moz-column-gap: 1em;
       column-gap: 1em;
  padding-right: 40px;
}
.news-archive__item-title {
  font-size: var(--font-size-base);
  padding: 14px 40px;
  border-radius: 100vh;
}

/*タグリスト
-----------------------------*/
.tag-select {
  margin-bottom: 50px;
}
.tag-select__box {
  min-width: 15em;
}
.tag-select__box::after {
  right: 1em;
}
.tag-select__dropdown {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  padding: 0.75em 3em 0.75em 0.75em;
}

/*==================================================
 ニュース詳細
================================================== */
.news-detail__post {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  margin-bottom: 20px;
}
/*==================================================
 お問い合わせ
================================================== */
.contact-form__table {
  margin-bottom: 56px;
}
.contact-form__table tr th {
  width: 350px;
  text-align: left;
  line-height: 2.375;
  padding: 20px 30px 20px 5px;
}
.contact-form__table tr th .optional-mark,
.contact-form__table tr th .required-mark {
  font-size: var(--font-size-sm);
  line-height: 2;
  margin-left: 1em;
}
.contact-form__table tr td {
  vertical-align: middle;
  line-height: 2.375;
  padding: 20px 5px 20px 10px;
}
.contact-form .contact-submits-wrap {
  padding-top: 32px;
}
.contact-form .contact-submits-wrap > * {
  width: 360px;
  height: 80px;
  margin: 20px 15px 0;
}

/*==================================================
 お問い合わせ完了
================================================== */
.contact-complete__text {
  text-align: center;
}

/*==================================================
プライバシーポリシー
================================================== */
.privacy-policy__box {
  padding: 40px 50px;
  margin-bottom: 30px;
}
.privacy-policy__heading {
  margin-bottom: 30px;
}

/*==================================================
 サイトマップ
================================================== */
.sitemap-list__items {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
  gap: 20px 80px;
}
.sitemap-list__link {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  padding: 15px 20px;
}

/*===============================================
  404エラー
===============================================*/