@charset "shift_jis";

/* top.cssにあった記述はすべて消して書き換えたので、すべてを本番環境へ移管する */


h1 {
  font-size: 10px;
  font-weight: 400;
  color: #3c3c3c;
  line-height: 20px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}


/* top_body */
/* ===== #new_main スコープ ===== */
#new_main {
  --mn-beige: #d9cba8;
  --mn-graybg: #f2f2f2;
  --mn-text: #333;
  --mn-sub: #6c6c6c;
  --mn-accent: #b8a06a;
  --mn-max: 1460px;
  --mn-pad: clamp(20px, 30px, 60px);

  display: block;
  font-family: "游ゴシック", "Yu Gothic", "YuGothic", sans-serif;
  color: var(--mn-text);

  & * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
  }

  & img {
    display: block;
    max-width: 100%;
  }

  & a {
    transition: all .4s ease;
  }

  & .mn-ph {
    width: 100%;
    height: 100%;
    background: #d9d9d9;
    object-fit: cover;
  }

  /* 共通：ダークな四角い矢印ボタン（ラフの→はすべてこの形） */
  & .mn-sq {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: #2b2b2b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    transition: background .3s;
  }

  /* ========== メインビジュアル ========== */
  & .mn-hero {
    margin: 0 auto;
    padding: clamp(100px, 10vw, 165px) 1.5% 0 1.5%;

    & .mn-hero__head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      margin-bottom: clamp(16px, 2.5vw, 40px);
      line-height: 1;
    }

    & .mn-hero__title {
      font-family: "Shippori Mincho", serif;
      font-size: clamp(45px, 5.8vw, 115px);
      font-weight: 600;
      letter-spacing: .03em;
    }

    & .mn-hero__en {
      font-family: "Shippori Mincho", serif;
      font-size: clamp(11px, 1vw, 20px);
      font-weight: 500;
      letter-spacing: .08em;
      text-align: left;
      line-height: 1.5;
      white-space: nowrap;
    }

    & .mn-hero__slider {
      position: relative;
      width: 100%;
      aspect-ratio: 1400 / 680;
      overflow: hidden;
    }

    & .mn-hero__slides {
      list-style: none;
      width: 100%;
      height: 100%;
    }

    & .mn-hero__slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 2s ease;

      &.is-active {
        opacity: 1;
      }
    }
  }

  /* ========== 振り分けボタン ========== */
  & .mn-cat {
    max-width: var(--mn-max);
    margin: 0 auto;
    padding: clamp(40px, 7vw, 100px) var(--mn-pad) clamp(60px, 7vw, 100px);

    & .mn-cat__list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(14px, 1.6vw, 26px);
    }

    & .mn-cat__item {
      position: relative;
    }
    & .mn-cat__list li:nth-child(1) .mn-cat__link::before {
      background-image: url(../img/top/top_menu_hover01.webp);
    }
    & .mn-cat__list li:nth-child(2) .mn-cat__link::before {
      background-image: url(../img/top/top_menu_hover02.webp);
    }
    & .mn-cat__list li:nth-child(3) .mn-cat__link::before {
      background-image: url(../img/top/top_menu_hover03.webp);
    }
    & .mn-cat__list li:nth-child(4) .mn-cat__link::before {
      background-image: url(../img/top/top_menu_hover04.webp);
    }

    & .mn-cat__link {
      position: relative;
      display: block;
      height: clamp(130px, 27vw, 420px);
      padding: clamp(20px, 2vw, 30px);
      background: var(--mn-graybg);
      text-decoration: none;
      color: var(--mn-text);
      overflow: hidden;
      transition: all .4s ease;
      &::before {
        content: "";
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: all .7s ease;
      }
      &::after {
        content: "";
        width: 100%;
        height: clamp(85px, 8vw, 115px);
        background: rgb(51, 51, 51, 0.3);
        position: absolute;
        bottom: 0;
        left: 0;
        opacity: 0;
        transition: all .4s ease;
      }

      & .mn-cat__thumb {
        position: absolute;
        top: clamp(20px, 2vw, 30px);
        right: clamp(20px, 2vw, 30px);
        width: clamp(70px, 10vw, 140px);
        height: clamp(70px, 10vw, 140px);
        overflow: hidden;
        transition: all .5s cubic-bezier(.4, 0, .2, 1);
        z-index: 0;
      }

      & .mn-cat__en {
        position: relative;
        z-index: 1;
        display: block;
        font-family: "Shippori Mincho", serif;
        font-size: clamp(10px, 0.8vw, 14px);
        letter-spacing: .1em;
        color: var(--mn-sub);
        margin-bottom: 10px;
        transition: color .4s ease;
        margin-top: clamp(100px, 18.6vw, 300px);
        padding-left:4px;

      }

      & .mn_under {
        display: flex;
        justify-content: space-between;
        align-items: end;
      }
      & .mn-cat__ja {
        position: relative;
        z-index: 1;
        display: block;
        font-family: "Shippori Mincho", serif;
        font-size: clamp(20px, 1.8vw, 28px);
        font-weight: 600;
        letter-spacing: .08em;
        transition: color .4s ease;
        line-height: 1;
      }

      /* 矢印：四角ボタン（右下） */
      & .mn-cat__arrow {
        position: relative;
        z-index: 1;
        width: 50px;
        height: 26px;
        border: 1px solid #3c3c3c;
        border-radius: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .4s ease;
        &::before {
          content: "";
          width: 12px;
          height: 1px;
          background: #3c3c3c;
          position: absolute;
          right: 0;
          left: 0;
          margin: 0 auto;
          bottom: 11px;
          transition: all .4s ease;
        }
        &::after {
          content: "";
          width: 4px;
          height: 4px;
          transform: rotate(-45deg);
          border-right: solid 1px #3c3c3c;
          border-bottom: solid 1px #3c3c3c;
          position: absolute;
          right: 18px;
          bottom: 9px;
          transition: all .4s ease;
        }
      }

      &:hover {
        color: #fff;
        &::before {
          opacity: 1;
        }
        &::after {
          opacity: 1;
        }
        & .mn-cat__thumb {
          display: none;
        }

        & .mn-cat__en {
          color: rgba(255, 255, 255, .8);
          &::before {
            background: rgba(255, 255, 255, .8);
          }
        }

        & .mn-cat__ja {
          color: #fff;
        }

        & .mn-cat__arrow {
          border-color: #fff;
          &::before {
            background: #fff;
          }
          &::after {
            border-right: solid 1px #fff;
          border-bottom: solid 1px #fff;
          }
        }
      }
    }
  }

  /* ========== ソリューション事業 / リーシング事業 ========== */
  & .mn-sol,
  & .mn-lea {
    position: relative;
    max-width: var(--mn-max);
    margin: 0 auto;
    padding: clamp(30px, 4vw, 50px) var(--mn-pad) clamp(70px, 9vw, 110px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(150px, 15vw, 210px);
    gap: clamp(20px, 2vw, 50px);
    align-items: start;
  }

  & .mn-sol__aside,
  & .mn-lea__aside {
    height: 100%;
  }

  & .mn-sol__sticky,
  & .mn-lea__sticky {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: clamp(40px, 4vw, 80px) 0;
    font-family: "Shippori Mincho", serif;
    margin-top: clamp(40px, 5vw, 80px);
    border-left: 1px solid transparent; 
    border-image: linear-gradient(to bottom, transparent 0%, #c8ba8d 50%, transparent 100%) 1;
    &::before {
      content: "";
      width: clamp(50px, 4.8vw, 80px);
      height: clamp(50px, 4.8vw, 80px);
      background-image: url(../img/top/c21_logo.webp);
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      top: 20px;
      right: -1vw;
      z-index: -1;
    }
  }

  & .mn-sol__vtitle,
  & .mn-lea__vtitle {
    font-size: clamp(30px, 2.8vw, 48px);
    font-weight: 600;
    letter-spacing: .1em;
    writing-mode: vertical-rl;
    line-height: 1;
  }

  & .mn-sol__vsub,
  & .mn-lea__vsub {
    font-size: clamp(12px, 1vw, 16px);
    letter-spacing: .1em;
    writing-mode: vertical-rl;
    align-self: flex-end;
    font-weight: 500;
    color: #c8ba8d;
  }

  & .mn-sol__vlead,
  & .mn-lea__vlead {
    font-size: clamp(13px, 1.1vw, 18px);
    line-height: 1.5;
    writing-mode: vertical-rl;
  }

  /* ラフの大きな英字ウォーターマーク */
  & .mn-sol__bg,
  & .mn-lea__bg {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-size: clamp(100px, 13.2vw, 200px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: .05em;
    margin-bottom: -.9vw;
    padding-right: 30px;
    text-align: right;
    color: var(--mn-graybg);
  }

  & .mn-sol__body,
  & .mn-lea__body {
    position: relative;
  }

  /* 各ブロック（グレー背景・インセット） */
  & .mn-sol__block {
    background: var(--mn-graybg);
    padding: clamp(28px, 3vw, 50px) clamp(28px, 2vw, 50px) clamp(40px, 6.2vw, 100px) clamp(28px, 2vw, 50px);
  }
  & .mn-lea__block {
    background: var(--mn-graybg);
    padding: clamp(40px, 6.8vw, 120px) 0;
  }

  & .mn-sol__block--buy {
    align-items: end;
    display: flex;
    gap: 0 clamp(20px, 4vw, 60px);
    width: 100%;
    margin-top: clamp(-100px, -5.2vw, -50px);
  }

  & .mn-sol__block--sell {
    display: flex;
    justify-content: space-between;
  }
  & .mn-sol__block--sell .mn-sol__txt {
    padding: 1.4vw 0 0 2vw;
  }

  & .mn-lea__block--rent {
    display: flex;
    position: relative;
    gap: 0 clamp(20px, 4vw, 60px); 
  }

  & .mn-lea__block--manage {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: clamp(20px, 2.8vw, 40px) 0 clamp(40px, 6.8vw, 120px) 0;
  }
  & .mn-lea__photo_w {
    position: absolute;
    right: 0;
    top: 410px;
    width: clamp(210px, 18vw, 280px);
  }

  & .mn-sol__photo {
    width: clamp(260px, 25vw, 390px);

    .mn-sol__block--sell & {
      aspect-ratio: 4 / 3;
    }
  }

  & .mn-lea__photo {
    /* aspect-ratio: 4 / 3; */
  }
  & .mn-manage__photo {
    width: clamp(380px, 32vw, 460px);
  }
  & .mn-lea__txt {
    padding-top: 30px;
  }
  & .mn-manage__txt {
    padding: 0 0 40px clamp(70px, 9vw, 160px);
  }

  & .mn-sol__ttl,
  & .mn-lea__ttl {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: clamp(16px, 1.9vw, 30px);
    line-height: 1;
  }

  & .mn-sol__lead,
  & .mn-lea__lead {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(16px, 1.8vw, 26px);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: clamp(16px, 1.9vw, 30px);
    letter-spacing: 0.05em;
  }

  & .mn-sol__desc,
  & .mn-lea__desc {
    font-size: clamp(12px, 1.2vw, 15px);
    line-height: 1.7;
    color: #555;
    margin-bottom: clamp(20px, 2vw, 30px);
    letter-spacing: 0.05em;
  }

  /* テキストリンク：枠つき＋右端に四角矢印 */
  & .mn-sol__links,
  & .mn-lea__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    & a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-width: 150px;
      font-weight: 500;
      padding: 15px 0px;
      text-decoration: none;
      font-size: 14px;
      border-bottom: solid 1px #cccccc;
      letter-spacing: .02em;
      & .mn-all__arrow {
        width: 25px;
        height: 15px;
        background: #333;
        border-radius: 2px;
        transition: all .4s ease;
        position: relative;
        &::before {
            content: "";
            width: 8px;
            height: 1px;
            background: #fff;
            position: absolute;
            right: 0;
            left: 0;
            margin: 0 auto;
            bottom: 7px;
            transition: all .4s ease;
        }
        &::after {
            content: "";
            width: 2px;
            height: 2px;
            transform: rotate(-45deg);
            border-right: solid 1px #fff;
            border-bottom: solid 1px #fff;
            position: absolute;
            right: 8px;
            bottom: 6px;
            transition: all .4s ease;
        }
      }
      &:hover {
        color: #b8a06a;
        border-bottom: solid 1px #b8a06a;
        & .mn-all__arrow {
          background: #b8a06a;
        }
      }
    }
  }

  & .mn-sol__links--wide {
    max-width: 540px;
  }

  /* ========== スタッフ紹介 ========== */
  & .mn-staff {
    margin: 0 auto;
    padding: clamp(50px, 7vw, 130px) 0 clamp(70px, 8vw, 100px) 0;
    overflow: hidden;

    & .mn-staff__head {
      max-width: var(--mn-max);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      padding: 0 var(--mn-pad);
      margin: 0 auto clamp(40px, 4vw, 60px) auto
    }
    & .mn-staff__headtxt {
      font-family: "Shippori Mincho", serif;
    }

    & .mn-staff__en {
      font-size: 16px;
      font-weight: 500;
      letter-spacing: .1em;
      color: #c8ba8d;
      margin-bottom: 15px;
    }

    & .mn-staff__ttl {
      font-size: clamp(26px, 2.8vw, 48px);
      font-weight: 600;
      letter-spacing: .06em;
      margin-bottom: clamp(28px, 3.2vw, 40px);
      line-height: 1;
    }

    & .mn-staff__desc {
      font-size: 18px;
      font-weight: 500;
    }

    & .mn-staff__more {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0px;
      font-size: 16px;
      white-space: nowrap;
      width: 220px;
      border-bottom: solid 1px #cccccc;
      transition: color .3s;
      & .mn-all__arrow {
          width: 30px;
          height: 20px;
          background: #333;
          border-radius: 2px;
          transition: all .4s ease;
          position: relative;
          &::before {
            content: "";
            width: 10px;
            height: 1px;
            background: #fff;
            position: absolute;
            right: 0;
            left: 0;
            margin: 0 auto;
            bottom: 9px;
            transition: all .4s ease;
        }
            &::after {
            content: "";
            width: 2px;
            height: 2px;
            transform: rotate(-45deg);
            border-right: solid 1px #fff;
            border-bottom: solid 1px #fff;
            position: absolute;
            right: 10px;
            bottom: 8px;
            transition: all .4s ease;
        }
      }
      &:hover {
        color: #b8a06a;
        border-bottom: solid 1px #b8a06a;
        & .mn-all__arrow {
          background: #b8a06a;
        }
      }
    }

  }

  /* ========== 当社について ========== */
  & .mn-about {
    padding: clamp(30px, 8vw, 100px) 0 clamp(70px, 8vw, 100px);
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 75px);
    width: calc(50% + 700px);
    max-width: 100%;

    & .mn-about__photo {
      width: clamp(300px, 38vw, 700px);
    }

    & .mn-about__body {
      width: 52vw;
    }

    & .mn-about__en {
      font-family: "Shippori Mincho", serif;
      font-size: 16px;
      letter-spacing: .1em;
      color: #c8ba8d;
      margin: 30px 0 15px 0;
    }

    & .mn-about__ttl {
      font-family: "Shippori Mincho", serif;
      font-size: clamp(28px, 2.8vw, 48px);
      font-weight: 600;
      letter-spacing: .06em;
      margin-bottom: clamp(28px, 2.7vw, 35px);
      line-height: 1;
    }

    & .mn-about__lead {
      font-family: "Shippori Mincho", serif;
      font-size: clamp(18px, 1.65vw, 26px);
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: clamp(15px, 1.4vw, 20px);
    }

    & .mn-about__cols {
      display: flex;
      justify-content: space-between;
      gap: clamp(24px, 3vw, 48px);
      margin-bottom: clamp(20px, 2vw, 40px);
    }
    .mn-about__tex {
      width: 53%;
    }

    & .mn-about__desc {
      font-size: clamp(13px, 1vw, 15px);
      line-height: 1.8;
    }

    & .mn-about__access {
      width: 46%;
    }

    & .mn-about__accessttl {
      font-family: "Shippori Mincho", serif;
      font-size: clamp(16px, 1.4vw, 20px);
      letter-spacing: .05em;
      padding: 15px 0 20px 0;
      font-weight: 600;
      position: relative;
      overflow: hidden;
      &::before {
        content: "";
        width: 10px;
        height: 1px;
        background: #3c3c3c;
        position: absolute;
        bottom: 20px;
        left: 95px;
      }
      &::after {
        content: "";
        width: clamp(160px, 17vw, 300px);
        height: 1px;
        background: #3c3c3c;
        position: absolute;
        bottom: 20PX;
        left: 120px;
      }
    }

    & .mn-about__accesslist {
      font-size: clamp(13px, 1vw, 15px);
      line-height: 1.6;
    }

    & .mn-about__links {
      list-style: none;
      display: flex;
      justify-content: space-between;

      & a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 15px 0;
        font-size: 14px;
        letter-spacing: .04em;
        border-bottom: solid 1px #cccccc;
        width: clamp(140px, 12vw, 180px);
        font-weight: 500;
        transition: color .3s;
        & .mn-all__arrow {
            width: 25px;
            height: 15px;
            background: #333;
            border-radius: 2px;
            transition: all .4s ease;
            position: relative;
            &::before {
              content: "";
              width: 8px;
              height: 1px;
              background: #fff;
              position: absolute;
              right: 0;
              left: 0;
              margin: 0 auto;
              bottom: 7px;
              transition: all .4s ease;
            }
            &::after {
              content: "";
              width: 2px;
              height: 2px;
              transform: rotate(-45deg);
              border-right: solid 1px #fff;
              border-bottom: solid 1px #fff;
              position: absolute;
              right: 8px;
              bottom: 6px;
              transition: all .4s ease;
          }
        }
        &:hover {
        color: #b8a06a;
        border-bottom: solid 1px #b8a06a;
        & .mn-all__arrow {
          background: #b8a06a;
        }
      }

        & .mn-sq {
          background: #2b2b2b;
        }
      }
    }
  }

  /* ========== お知らせ ========== */
  & .mn-news {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: clamp(30px, 8vw, 100px) 0 clamp(80px, 9vw, 120px);
    display: flex;
    align-items: center;
    justify-content: space-between;

    & .mn-news__en {
      font-family: "Shippori Mincho", serif;
      font-size: 16px;
      letter-spacing: .1em;
      color: #c8ba8d;
      margin: 0px 0 15px 0;
    }

    & .mn-news__ttl {
      font-family: "Shippori Mincho", serif;
      font-size: clamp(28px, 2.8vw, 48px);
      font-weight: 600;
      letter-spacing: .06em;
      margin-bottom: clamp(50px, 4.7vw, 70px);
      line-height: 1;
    }

    & .mn-news__more {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0px;
      font-size: 16px;
      white-space: nowrap;
      width: 180px;
      border-bottom: solid 1px #cccccc;
      transition: color .3s;
      & .mn-all__arrow {
          width: 30px;
          height: 20px;
          background: #333;
          border-radius: 2px;
          transition: all .4s ease;
          position: relative;
          &::before {
            content: "";
            width: 10px;
            height: 1px;
            background: #fff;
            position: absolute;
            right: 0;
            left: 0;
            margin: 0 auto;
            bottom: 9px;
            transition: all .4s ease;
        }
        &::after {
            content: "";
            width: 2px;
            height: 2px;
            transform: rotate(-45deg);
            border-right: solid 1px #fff;
            border-bottom: solid 1px #fff;
            position: absolute;
            right: 10px;
            bottom: 8px;
            transition: all .4s ease;
        }
      }
      &:hover {
        color: #b8a06a;
        border-bottom: solid 1px #b8a06a;
        & .mn-all__arrow {
          background: #b8a06a;
        }
      }
    }
  }

  /* ===== reduced motion ===== */
  @media (prefers-reduced-motion: reduce) {
    & .mn-hero__slide,
    & .mn-cat__thumb {
      transition: none;
    }
  }

  /* ===== 1024px以下：事業セクションを縦積み、staff/newsは1カラム ===== */
  @media (max-width: 1024px) {
    & .mn-sol,
    & .mn-lea {
      grid-template-columns: minmax(0, 1fr);
    }

    & .mn-sol__aside,
    & .mn-lea__aside {
      display: none;
    }

    & .mn-cat__list {
      grid-template-columns: repeat(2, 1fr);
    }

    & .mn-about {
      grid-template-columns: minmax(0, 1fr);
    }

    & .mn-news {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  /* ===== 720px以下：ブロック内も縦積み ===== */
  @media (max-width: 720px) {
    & .mn-hero__head {
      flex-direction: column;
      align-items: end;
    }

    & .mn-hero__en {
      text-align: left;
    }

    & .mn-cat__list {
      grid-template-columns: 1fr;
    }

    & .mn-sol__block--buy,
    & .mn-sol__block--sell,
    & .mn-lea__block--rent,
    & .mn-lea__block--manage {
      grid-template-columns: minmax(0, 1fr);
    }

    & .mn-sol__block--sell .mn-sol__photo,
    & .mn-lea__block--manage .mn-lea__photo {
      order: -1;
    }

    & .mn-about__cols {
      grid-template-columns: minmax(0, 1fr);
    }

    & .mn-about__links {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    & .mn-staff__head {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    & .mn-news__link {
      flex-wrap: wrap;
    }
  }
}
#jsp {
  text-align: right;
  padding-right: 2%;
  & a {
    color: #555;
  }
}

/* 以下はiframe埋め込み用 */

.mn-staff iframe {
  width: 100%;
  height: clamp(310px, 27vw, 400px);
}

.mn-staff__slider {
  width: calc(50% + 700px);
  left: calc(50% - 700px);
  position: relative;
  padding-top: 5px;
  overflow: hidden;
}


.mn-staff__track {
  list-style: none;
  display: flex;
  gap: clamp(16px, 1.6vw, 24px);
}

.mn-staff__card {
  flex: 0 0 clamp(200px, 20vw, 280px);
  & a {
    display: block;
  }
  & img {
    display: block;
  }
}
.mn-staff__card a:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  transition: all .4s ease;
}


.mn-staff__photo {
  position: relative;
  aspect-ratio: 3 / 4;
      & img {
        width: 100%;
      }
}

.mn-staff_syozoku {
  position: absolute;
  top: 20px;
  right: 16px;
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: .08em;
}

.mn-staff__name {
  position: absolute;
  top: 20px;
  right: 40px;
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: .08em;
}

.mn-news iframe {
  width: 900px;
  height: 310px;
}
.mn-news__list {
      list-style: none;
      border-top: 1px solid #ccc;
      width: 900px;
}

.mn-news__item {
      border-bottom: 1px solid #ccc;
    }

.mn-news__link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 35px 20px;
      margin: 5px 0;
      transition: color .3s;
      & div {
        display: flex;
      }

      & .mn-news_date {
        font-size: 16px;
        font-weight: 600;
        padding: 0 40px 0 0px;
        transition: all .4s ease;
        color: #b7b7b7;
      }

      & .mn-news_txt {
        font-size: 18px;
        font-weight: 600;
        transition: all .4s ease;
        color: #333;
      }
      & .mn-all__arrow {
        width: 30px;
        height: 20px;
        background: #333;
        border-radius: 2px;
        transition: all .4s ease;
        position: relative;
        &::before {
          content: "";
          width: 10px;
          height: 1px;
          background: #fff;
          position: absolute;
          right: 0;
          left: 0;
          margin: 0 auto;
          bottom: 9px;
         }
                      &::after {
          content: "";
          width: 2px;
          height: 2px;
          transform: rotate(-45deg);
          border-right: solid 1px #fff;
          border-bottom: solid 1px #fff;
          position: absolute;
          right: 10px;
          bottom: 8px;
        }
      }
       &:hover div .mn-news_date {
        color: #b8a06a;
      }
      &:hover div .mn-news_txt {
        color: #b8a06a;
      }
      &:hover .mn-all__arrow {
        background: #b8a06a;
      }
    }





/* /top_body */