html {
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}


body {
  /*background-color: #F8F8F8;*/
	background-color: #c5c8cd;
  color: #4a4a4a;
  font-family: "Hiragino Kaku Gothic ProN", "Notosans JP", "Hiragino Sans", Meiryo, sans-serif;
  overflow-x: hidden;
  margin: 0;
}


p {
  font-size: clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem);
  letter-spacing: .4px;
  line-height: 1.9;
  text-align: justify;
  margin: 0;
  padding: 0;
}


a {
  color: #4a4a4a;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.pc-none {
  display: none;
}


@media(max-width:1024px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }
}

.container {
  margin-top: 200px;
  margin-bottom: 200px;
  margin-left: clamp(0.625rem, -10.144rem + 16.83vw, 5rem);
  margin-right: clamp(0.625rem, -10.144rem + 16.83vw, 5rem);
}


@media (max-width:1024px) {
  .container {
    margin: 100px 0;
  }
}

.layout {
  display: flex;
  font-family: "Hiragino Kaku Gothic ProN",
    "NotoSans JP"
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  ;
}

.logo-container {
  order: 1;
  width: 15%;
  position: relative;
}

.main {
  order: 2;
  width: 70%;
}

.mains {
  order: 2;
  width: 70%;
  margin: 0 10% 0 8%;
  max-width: 1000px;
}

.header-webaxis {
  order: 3;
  width: 15%;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 50;
}


.shrink {
  transform: translateX(-50%) scale(0.3);
  opacity: 0;
  filter: blur(30px);
}


.svg-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

svg {
  max-width: 100%;
  height: 100%;
  display: block;
}

.svg-wrap svg {
  overflow: visible;
  filter: blur(10px);
}

#blob-group {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;

  transform-origin: center center;
  overflow: visible;
  will-change: transform;
  max-width: none;
}

#review {
  position: relative;
}

.review-blob-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.review-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.svg-wrap {
  will-change: transform, opacity;
}


/* ハンバーガーメニュー */
.hum_btn,
.gnav_menu_title {
  display: none;
}

/* ナビゲーション */
.gnav_menu {
  display: flex;
  flex-direction: column;
  height: 100vh;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: auto;
}

.gnav_menu.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.no-scroll {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

@media (min-width:1024px) {
  .mail-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: auto;
    white-space: nowrap;
  }

  .mail-icon-img {
    filter: invert(100%);
    transition: .3s;
  }

  .mail-icon-img:hover {
    filter: invert(0%);
    transition: .3s;
  }

  .mail-text {
    font-size: clamp(0.625rem, 0.339rem + 0.45vw, 0.875rem);
    color: #222;
  }

}

@media (max-width:1600px) {
  .mail-wrap {
    flex-direction: column;
    align-items: end;
    gap: 20px;
    margin-right: clamp(1.875rem, -0.268rem + 3.35vw, 3.75rem);
  }

  .mail-text {
    font-size: 10px;
    color: #222;
  }
}

@media (max-width:1024px) {
  .mail-wrap {
    display: none;
  }
}



.gnav_menu_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  margin-right: clamp(1.875rem, -0.268rem + 3.35vw, 3.75rem);
  max-height: 80vh;
  overflow-y: auto;
}



@media (min-width:1024px) {
  .gnav_menu_item {
    position: relative;
    margin-top: clamp(0.313rem, -0.759rem + 1.67vw, 1.25rem);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    white-space: nowrap;
  }

  /* アイコンラッパー */
  .icon-wrapper {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    margin-right: 30px;
    align-items: center;
    overflow: visible;
    width: 100%;
  }

  .icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1A1A1A;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 0.4s ease, border-radius 0.4s ease;
    transform-origin: right center;
    overflow: hidden;
  }

  .icon-circle img {
    position: absolute;
    right: 8.5px;
  }

  /* ナビの基本スタイル */

  .gnav_menu_item_link {
    position: relative;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .gnav_menu_item_link .text {
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s ease;
    z-index: 2;
    font-size: clamp(0.563rem, -0.053rem + 0.96vw, 0.813rem);
    color: #fff;
  }


  /* 日本語・英語テキスト */
  .english {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
  }

  .japanese {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    transform: translateY(-30%);
    transition: all 0.5s ease-in-out;
  }

  /* hover時の動き */
  .gnav_menu_item_link:hover .icon-circle,
  .gnav_menu_item_link.active .icon-circle {
    border-radius: 30px;
    width: 100%;
    max-width: 1200px;
  }

  .gnav_menu_item_link:hover .english,
  .gnav_menu_item_link.active .english {
    opacity: 1;
    transition-delay: 0.2s;
  }

  /* 英語hover時に日本語表示 */
  .gnav_menu_item:hover .english {
    opacity: 0;
    transform: translateY(-70%);
  }

  .gnav_menu_item:hover .japanese {
    opacity: 1;
    transform: translateY(-50%);
  }

  /* アクティブ状態 */
  .gnav_menu_item_link.active {
    background-color: #1A1A1A;
    color: #fff;
    border-radius: 30px;
  }

}

@media (max-width:1024px) {
  .gnav_menu_item {
    margin: 20px;
    cursor: pointer;
    font-weight: bold;
  }
}



@media (max-width:1024px) {
  .logo-container {
    width: 0;
    position: static;
  }

  .main {
    width: 90%;
    margin: 0 auto;
  }

  .mains {
    width: 90%;
    margin: 0 auto;
  }

  .header-webaxis {
    width: 0;
  }

  .humNavMenuIsOpen {
    transform: translateX(0);
  }


}

/* ===========================================
 * グローバルメニュー　モバイル
 * ======================================== */

@media (max-width: 1024px) {

  .gnav_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 100vh;
    transform: translateY(-100%);
    transition: transform 0.6s ease;
    background-image: url(../images/review-background-sp.webp);
    background-size: cover;
    background-position: center;
    overflow-y: auto;
  }

  .humNavMenuIsOpen {
    transform: translateY(0);
  }

  /*フワッと広がる*/
  .humNavMenuIsOpen .nav_bg_circle {
    transform: scale(50);
  }

  .gnav_menu_title {
    margin-right: 0;
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .gnav_menu_list {
    width: 100%;
    overflow-y: scroll;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }



  .gnav_menu_item_link.contact_btn::after {
    content: none;
  }

  .gnav_menu_item.contact__btn {
    display: block;
  }

  .gnav_menu_item_link {
    font-size: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 6px 2px;
    border-bottom: 1px solid #4a4a4a;
  }


  .contact-sp {
    border: 1px solid #4a4a4a;
    margin: 0 auto;
    background: transparent;
    border-radius: 30px;
    font-weight: bold;
    padding: 10px 20px;
    color: #4a4a4a;
  }

  .contact_btn_ico {
    text-align: center;
  }


  /* ハンバーガーメニューボタンパーツ */
  .hum_btn {
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 30;
    width: 40px;
    height: 40px;
    padding-left: 10px;
    padding-right: 20px;
    display: block;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #4a4a4a;
  }

  .hum_btn_line {
    width: 20px;
    height: 1.5px;
    background-color: #4a4a4a;
    transition: all 0.3s;
  }

  .hum_btn.buttonIsOpen .hum_btn_line {
    background-color: #4a4a4a;
  }

  .hum_btn_line.top {
    position: absolute;
    top: 10px;
    right: 9px;
  }

  .buttonIsOpen .hum_btn_line.top {
    transform: translateY(7.5px) rotate(45deg);
  }

  .buttonIsOpen .hum_btn_line.medium {
    opacity: 0;
  }

  .hum_btn_line.medium {
    position: absolute;
    top: 18px;
    right: 9px;
  }

  .hum_btn_line.bottom {
    position: absolute;
    bottom: 10px;
    right: 9px;
  }

  .buttonIsOpen .hum_btn_line.bottom {
    transform: translateY(-8.5px) rotate(-45deg);
  }


  .isScrollAllowed {
    overflow: hidden
  }

}

/* ロゴ */
.header_logo {
  position: fixed;
  padding: 20px;
  z-index: 1000;
}

.headline1-text {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: clamp(0.563rem, 0.5rem + 0.31vw, 0.875rem);
  font-weight: normal;
  top: 40vh;
  left: 5px;
}

.scroll-btn {
  position: absolute;
  top: 80vh;
  right: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.scroll-img {
  display: block;
  margin: 0 auto;
  animation: upDown 2s ease-in-out infinite;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

.mainvisual-text {
  font-weight: 900;
  font-size: clamp(1.875rem, 1.125rem + 3.75vw, 4.5rem);
  line-height: 1.5;
  color: #222;
  text-shadow:
    -0.4px -0.4px 0 #222,
    0.4px -0.4px 0 #222,
    -0.4px 0.4px 0 #222,
    0.4px 0.4px 0 #222;
}

.logo_img {
  max-width: 150px;
  height: auto;
}

.catchcopy_headline_grop {
  position: relative;
  top: 25vh;
}

.fv-text {
  margin-top: 30px;
  font-size: clamp(0.938rem, 0.58rem + 0.56vw, 1.25rem);
  color: #222;
  font-weight: 500;
}

.about-main-wrap {
  border-top: 1px solid #4a4a4a;
  border-bottom: 1px solid #4a4a4a;
  margin-bottom: 70px;
}

.mainvisual {
  height: 100vh;
}

.main-headline {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.125rem, 0.85rem + 1.38vw, 2.5rem);
  margin-top: 10px;
  color: #222;
}

.main-subtext {
  text-align: center;
  font-weight: bold;
  font-size: clamp(0.563rem, 0.413rem + 0.75vw, 1.313rem);
  margin-bottom: 10px;
  color: #222;
}

@media (max-width:1024px) {


  .fv-text {
    font-size: clamp(0.625rem, 0.398rem + 1.14vw, 1.125rem);
  }

  .header_logo {
    padding: 10px;
    left: 10px;
    top: 10px;
  }

  .catchcopy_headline_grop {
    top: 30vh;
  }

  .scroll-btn {
    right: 10px;
  }
}

@media (max-width:1024px) {
  .headline1-text {
    writing-mode: horizontal-tb;
    top: 55px;
    left: 20px;
    font-size: 8px;
  }

  .mainvisual-text {
    text-shadow:
      -0.1px -0.1px 0 #222,
      0.1px -0.1px 0 #222,
      -0.1px 0.1px 0 #222,
      0.1px 0.1px 0 #222;
  }

}


/* 全体共通 */

.title_img {
  height: 26px;
  height: auto;
}

@media(max-width:500px) {
  .title_img {
    height: 18px;
    width: auto;
  }

  .title_text {
    font-size: 10px;
  }
}

.blog-page-container {
  margin-bottom: 80px;
}

.headline-website {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}


/* about */

.bold-text {
  font-size: clamp(1.25rem, 1.071rem + 0.89vw, 1.875rem);
  font-weight: bold;
  margin: 60px 0;
  letter-spacing: .1px;
  color: #222;
}

.about-item {
  margin: 80px 0;
  width: 70%;
}

@media (min-width:789px) {
  .about-item:nth-child(even) {
    margin-left: 0;
    margin-right: auto;
  }

  .about-item:nth-child(odd) {
    margin-left: auto;
    margin-right: 0;
    flex-direction: row-reverse;
  }

}

.headline3-text {
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
  margin: 40px 0;
  letter-spacing: .2px;
  color: #222;
  position: relative;
  padding-left: 25px;
}

.headline3-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: #E88491;
}

@media (min-width:789px) {
  .headline3-text {
    white-space: nowrap;
  }
}

@media (max-width:789px) {
  .about-item {
    width: 100%;
  }

  .bold-text {
    margin: 30px 0;
  }

}

/* service */
.service-title {
  font-size: clamp(0.813rem, 0.311rem + 0.78vw, 1.25rem);
  font-weight: bold;
  letter-spacing: .2px;
  color: #222;
  margin-bottom: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}


.services-item {
  padding: 20px 40px;
  height: 100%;
  box-sizing: border-box;
}

.services-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  height: 120px;
  margin: 0;
}

@media (min-width:789px) {
  .services-box::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    height: 120px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    z-index: -1;
  }

  /* 個別画像指定 */
  .services-box.service-01::before {
    background-image: url("../images/service-number-01.webp");
  }

  .services-box.service-02::before {
    background-image: url("../images/service-number-02.webp");
  }

  .services-box.service-03::before {
    background-image: url("../images/service-number-03.webp");
  }

  .services-box.service-04::before {
    background-image: url("../images/service-number-04.webp");
  }

  .services-box.service-05::before {
    background-image: url("../images/service-number-05.webp");
  }

  .services-box.service-06::before {
    background-image: url("../images/service-number-06.webp");
  }
}

.service-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;

}

.right {
  border-right: 1px solid #4a4a4a;
}

.bottom-border {
  border-bottom: 1px solid #4a4a4a;
}

@media (max-width:1024px) {
  .service-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }

  .service-text {
    display: block;
  }

  .services-item {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
    font-size: 15px;
  }

  .service-img {
    width: 60px;
    height: auto;
  }

  .right {
    border-right: none;
  }

  .bottom-sp {
    border-bottom: 1px solid #4a4a4a;
  }

}

@media (max-width:420px) {
  .services-item {
    padding: 20px 5px;
  }
}

/* site types */

.site-type-item {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  align-items: center;
}

.site-type-text {
  flex: 2;
}

.site-type-h3 {
  font-size: clamp(0.938rem, 0.875rem + 0.31vw, 1.25rem);
  letter-spacing: .2px;
  color: #222;
  margin-top: 0;
}

@media (max-width:789px) {
  .site-type-img {
    text-align: center;
    margin-bottom: 30px;
  }
}

.top-border {
  border-top: 1px solid #4a4a4a;
}

.top-boeder-sp {
  border-top: none;
}

.flex-left {
  flex: .7;
}

@media (max-width:1024px) {
  .top-border-sp {
    border-top: 1px solid #4a4a4a;
  }

  .flex-left {
    flex: 1;
  }
}


@media (max-width:789px) {
  .site-type-item {
    display: block;
    padding-bottom: 40px;
  }

}

.approach-subtext {
  font-size: 10px;
  font-weight: 600;
}

.approach-h4-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.headline4-text {
  font-size: clamp(0.938rem, 0.875rem + 0.31vw, 1.25rem);
  margin-bottom: 5px;
  letter-spacing: .2px;
  color: #222;
  margin: 0;
}

@media (max-width:789px) {
  .approach-h4-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

/* works */

.works-item {
  display: flex;
  margin-bottom: 100px;
  gap: clamp(0.313rem, -0.759rem + 1.67vw, 1.25rem);
  height: 430px;
  align-items: center;
  position: relative;
}

.works-item.reverse {
  flex-direction: row-reverse;
}

.works-type {
  margin: 20px 0;
  background: #222;
  color: #fff;
  width: 140px;
  text-align: center;
  font-size: 10px;
}

.item-bg {
  height: 100%;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
}


.works-item-img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  cursor: pointer;
}

.works-item-text {
  flex-grow: 1;
}

.fade-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.fade-slide-right.inview {
  opacity: 1;
  transform: translateX(0);
}

.fade-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.fade-slide-left.inview {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {

  .works-item,
  .works-item.reverse {
    flex-direction: column;
    height: auto;
    margin-bottom: 30px;
  }

  .item-bg {
    width: 100%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    /* デフォルト：中央寄せ */
  }

  .item-bg.left-align {
    justify-content: flex-start;
    /* 左寄せ */
  }

  .item-bg.right-align {
    justify-content: flex-end;
    /* 右寄せ */
  }

  .works-item-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .works-item-text {
    width: 100%;
  }

}



.btn-wrap {
  text-align: center;
  margin-top: 40px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: clamp(11.875rem, 10.625rem + 6.25vw, 16.25rem);
  background: transparent;
  border: 1px solid #4a4a4a;
  padding: 10px 40px;
  border-radius: 50px;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: bold;
  transition: all 0.4s ease;
  color: #4a4a4a;
  line-height: 0;
  letter-spacing: clamp(0.031rem, 0.022rem + 0.04vw, 0.063rem);
  position: relative;
  z-index: 1;
}

.btn:hover {
  background: #4a4a4a;
  color: #fff;
}

.btn-img {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;

}

.cv-btn {
  opacity: 0;
  transform: translateX(calc(-50% - 100px));
  transition: all 0.6s ease-out;
}

.cv-btn.visible {
  opacity: 1;
  transform: translateX(-50%);

}

/* question */


.questio-box {
  margin-bottom: 50px;
}

.question-text,
.answer-text {
  display: flex;
  padding: 20px 0;
  gap: 30px;
  align-items: center;
}

.question-container {
  position: relative;
}

@media(max-width:789px) {
  .site-type-h3 {
    flex: 1;
  }

  .qa-icon-img {
    width: 38px;
    height: 38px;
  }
}

/* whyus */
/* section.why-us {
  margin: 200px 0;
} */

/* review */
@media (max-width: 789px) {
  #review {
    min-height: 100dvh;
    /* スマホ画面高さいっぱいに */
  }
}

.review {
  position: relative;
  overflow: hidden;
  margin: 200px 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.review-h2 {
  margin-bottom: 30px;
}

.swiper {
  margin-top: 80px;
  position: relative;
}


@media (max-width:789px) {
  .review-svg {
    height: 100vh;
    width: auto;
  }

}


@media (min-width:789px) {
  .slider-content {
    width: clamp(15rem, 10.875rem + 20.63vw, 35.625rem);
    margin: 0 auto;
    max-width: 570px;
    text-align: center;
  }

  .company-img {
    width: clamp(15rem, 10.875rem + 20.63vw, 35.625rem);
    height: auto;
  }

  .swiper-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: calc((100% /1.9) * 0.3);
    height: 100%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 2;
  }
}

@media (max-width:789px) {
  .slider-content {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .company-img {
    width: 100%;
    height: auto;
  }

  .swiper {
    margin-top: 20px;
  }
}


/* ページネーション */

.swiper-pagination {
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 0;
  user-select: none;
  margin: 50px 0;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #4a4a4a;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #4a4a4a;
  opacity: 1;
}

.swiper-pagination-plan {
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
  user-select: none;
  margin: 50px 0;
}

.swiper-pagination-plan-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #4a4a4a;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.swiper-pagination-plan-bullet-active {
  background-color: #4a4a4a;
  opacity: 1;
}

.swiper-pagination-modal {
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
  user-select: none;
  margin: 50px 0;
}

.swiper-pagination-modal-bullet {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #4a4a4a;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.swiper-pagination-modal-bullet-active {
  background-color: #4a4a4a;
  opacity: 1;
}

/* flow */


.flow-list {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 50px 20px 0;
}

.flow-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #4a4a4a;
  padding: 30px 5px;
  width: 50px;
  border-radius: 50px;
  height: 200px;
}

.flow-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.2rem;
  font-size: 15px;
  font-weight: bold;
}

.flow-number {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.arrow-right::after {
  content: ">";
  margin-left: 8px;
  font-weight: 600;
}

@media (max-width:789px) {
  .flow-list {
    display: block;
    text-align: center;
  }

  .flow-item {
    flex-direction: row;
    border: 1px solid #4a4a4a;
    padding: 20px 5px;
    width: 100%;
    height: 20px;
    border-radius: 50px;
  }

  .flow-text {
    writing-mode: horizontal-tb;
    font-size: clamp(1rem, 0.829rem + 0.85vw, 1.25rem);
  }

  .flow-number {
    margin: 0 10px 0 0;
  }

  .arrow-right::after {
    content: ">";
    display: inline-block;
    transform: rotate(90deg);
    margin-left: 8px;
    font-weight: bold;
  }
}

@media (max-width:500px) {
  .flow-item {
    padding: 10px 5px;
  }

}

/* plan */
.plan-container {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -0.893rem + 3.35vw, 3.125rem);
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid #4a4a4a;
  border-bottom: 1px solid #4a4a4a;
  padding: 40px 20px;
}

.plan-img-wrap {
  text-align: center;
  flex: 1;
}

.plan-example-wrap {
  flex: 2;
}

@media(max-width:1550px) {
  .plan-container {
    padding: 10px 20px;
  }
}

@media (max-width:1024px) {
  .plan-container {
    padding: 50px 20px 0;
  }

  .plan-img-wrap {
    text-align: center;
    flex: 0;
  }
}


.plan-img-wrap img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.plan-example-text {
  margin: 40px 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  font-size: clamp(0.75rem, 0.607rem + 0.22vw, 0.875rem);
}

.example-item {
  display: flex;
  gap: clamp(0.75rem, -3.393rem + 6.47vw, 4.375rem);
  align-items: center;
}

.example-item-title {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  margin-bottom: 10px;
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.607rem + 0.22vw, 0.875rem);
}

.example-item-about {
  margin-top: 5px;
}

.number-text {
  font-size: clamp(0.938rem, 0.58rem + 0.56vw, 1.25rem);
  font-weight: bold;
}

.min-text {
  font-size: clamp(0.625rem, 0.339rem + 0.45vw, 0.875rem);
  font-weight: bold;
}

.example-item-box {
  text-align: center;
}


@media (max-width:1024px) {
  .plan-container {
    flex-direction: column;
  }

  .example-item {
    align-items: unset;
    gap: clamp(0.5rem, -0.977rem + 7.39vw, 3.75rem);
  }

  .number-text,
  .example-item-title {
    font-size: clamp(0.75rem, 0.523rem + 1.14vw, 1.25rem);
  }

  .min-text {
    font-size: clamp(0.438rem, 0.267rem + 0.85vw, 0.813rem);
  }
}

/* blog */

.blog-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog_inner {
  width: 30%;
  font-weight: bold;
  text-align: left;
  padding-bottom: 2.1875rem;
}

@media screen and (max-width:900px) {
  .blog_inner {
    width: 47%;
  }
}

@media screen and (max-width:520px) {
  .blog_inner {
    padding-right: 20px;
    width: 100%;
    min-width: 90%;
    padding-bottom: 1.5rem;
  }

  .blog-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}

.blog_inner a {
  transition: all .2s;
}

.blog-inner-txt {
  display: flex;
  flex-direction: column;
  height: 130px;
}

.blog_title {
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  flex-grow: 1;
}

.blog_date {
  font-size: 0.75rem;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: auto;
}

.attachment-post-thumbnail {
  width: 100%;
}


/* contact */


.contact_list {
  margin: 50px 0;
}

.contact-sub-text {
  margin-bottom: 50px;
}

.checkbox-area {
  flex: 5;
}

.required {
  font-size: 14px;
  color: #E88491;
  margin-left: 10px;
}

.form_box {
  display: flex;
  border-top: 1px solid rgba(74, 74, 74, 0.5);
  padding: 30px 0;
  gap: 10px;
}

.contact-name {
  flex: 1.5;
  display: inline-block;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
}

.wpcf7-form-control-wrap {
  flex: 5;
}

.form_box_contact {
  display: flex;
  margin-top: 50px;
}

.box-area {
  height: 30px;
  padding: 0 10px;
}

.box-area-min {
  width: 40%;
  height: 30px;
  padding: 0 10px;
}

.box-area-max {
  width: 60%;
  height: 30px;
  padding: 0 10px;
}

.inquiry-items {
  display: inline-block;
  font-size: 14px;
}

.amount-box {
  flex: 5;
}

.textarea-item {
  width: 90%;
  height: 250px;
  margin-top: 5px;
  padding: 0 10px;
}

.contact-text {
  margin-bottom: 10px;
}

.information-text {
  margin: 30px 0;
  text-align: center;
}

.inquiry-box {
  flex: 5;
}

.link-text {
  color: mediumblue;
  text-decoration: underline;
}

.wpcf7-list-item {
  font-size: 14px;
  display: inline-block;
  margin: 0 0 20px 10px !important;
}

.wpcf7-form input,
.wpcf7-form textarea {
  border: 1px solid #ccc;
  background: #fff;
  padding: 5;
  font-size: 14px;
}

.wpcf7-form .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: clamp(11.875rem, 10.625rem + 6.25vw, 16.25rem);
  background: transparent !important;
  border: 1px solid #4a4a4a !important;
  border-radius: 50px !important;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: bold;
  transition: all 0.4s ease;
  margin: 0 auto;
  color: #4a4a4a;
  line-height: 0;
}

.acceptance_checkbox {
  vertical-align: middle !important;
}

@media (max-width:789px) {
  .form_box {
    flex-direction: column;
    margin-top: 30px;
  }

  .box-area {
    flex: initial;
    width: 90%;
  }

  .contact-name {
    flex: initial;
  }

  .box-area-max {
    flex: initial;
    width: 90%;

  }

  .box-area-min {
    flex: initial;
    width: 50%;
  }

  .textarea-item {
    width: 90%;
    height: 150px;
  }

  .form_box_contact {
    flex-direction: column;
  }

  .inquiry-items {
    line-height: 20px;
  }
}

.top_return {
  z-index: 10000;
}

/* モーダル */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  background-color: #F8F8F8;
}

.modal-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

.modal-scroll-area {
  overflow-y: auto;
  height: 100vh;
  padding: 150px 80px;
  box-sizing: border-box;
}

@media (max-width:520px) {
  .modal-scroll-area {
    padding: 150px 20px 150px;
  }
}

.modal-button-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 99999;
}

.modal-img-container {
  max-width: 900px;
  margin: 140px auto 60px;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width:900px) {
  .modal-img-container {
    margin: 40px auto;
  }
}

.modal-logo-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  text-align: center;
  padding: 30px 15px;
  display: flex;
  align-items: center;
  gap: clamp(0rem, -0.357rem + 1.79vw, 1.25rem);
}

.modal-logo-img {
  width: clamp(6.25rem, 5.357rem + 4.46vw, 9.375rem);
  height: auto;
  cursor: pointer;

}

.modal-btn-wrap {
  position: absolute;
  top: 25px;
  right: clamp(0.938rem, 0.67rem + 1.34vw, 1.875rem);
  display: flex;
  align-items: center;
  gap: 20px;
}

.modal-close-text {
  font-size: 12px;
  border-bottom: 1px solid #222;
}

.modal-close {
  width: clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem);
  height: clamp(1.875rem, 1.696rem + 0.89vw, 2.5rem);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  color: #222;
  border: 1px solid #222;
  background: transparent;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background-color: #222;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-close:hover {
  background-color: #ccc;
}

.modal-type-item {
  display: flex;
  gap: 30px;
  padding: 40px 0;
  align-items: center;
}


.modal-title {
  font-size: clamp(0.375rem, 0.268rem + 0.54vw, 0.75rem);
  margin-left: clamp(0.625rem, 0.446rem + 0.89vw, 1.25rem);
}

.modal-title-en {
  font-weight: bold;
  font-size: clamp(0.938rem, 0.848rem + 0.45vw, 1.25rem);
  color: #222;
}

.modal-title-jp {
  font-size: clamp(0.625rem, 0.536rem + 0.45vw, 0.938rem);
  margin-left: 20px;
}



.modal-img {
  height: clamp(12.5rem, 6.875rem + 28.13vw, 32.188rem);
  width: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* 789px以上：横並び */
@media screen and (min-width: 789px) {
  .modal-img-container .swiper-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
  }

  .modal-swiper {
    width: auto !important;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
  }

  .swiper-pagination-modal {
    display: none;
  }

}

/* 788px以下：スライダー */
@media screen and (max-width: 788px) {
  .modal-img-container {
    padding: 0 16px;
  }


  .modal-swiper {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .modal-type-item {
    display: block;
    padding-bottom: 40px;
  }
}

.article_thumb img {
  width: 100%;
  height: auto;
  margin-top: 15px;
}

/* ブログ記事のサムネイル画像を横幅いっぱいに */
.blog_inner img {
  width: 100%;
  height: auto;
}

img.attachment-full.size-full.wp-post-image {
  width: 100% !important;
}

/*記事内の次へリンク*/
@media screen and (min-width: 767px) {
  .post-links {
    display: flex !important;
    justify-content: space-between;
  }
}

.post-links.works {
  display: block;
  margin-top: 30px;
  gap: 30px;
}

.post-links.works .post-link {
  width: 100%;
  height: 120px;
  margin-bottom: 10px;
}

.post-links.works .post-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  padding: 10px;
  box-sizing: border-box;
}

.post-links.works .post-link-prev a {
  border-left: solid 30px #E88491;
}

.post-links.works .post-link-next a {
  border-right: solid 30px #E88491;
}

.post-links.works .post-link-prev a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: translate(-50%) rotate(-45deg);
  z-index: 5;
}

.post-links.works .post-link-next a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translate(-50%) rotate(45deg);
  z-index: 5;
}

.post-links.works .post-link .image {
  width: 40%;
}

.post-link img {
  max-width: 100%;
}

.post-links.works .post-link .text {
  width: 55%;
}

.post-links.works .post-link .text p {
  line-height: 1.3;
}

.post-links.works .post-link .text p.copy {
  font-size: 1.2rem;
  color: #084C82;
  /*青*/
  margin-top: 0.2em;
}

.post-links.works .post-link .text p.disc {
  color: #646464;
  font-size: 1.2rem;
  margin-top: 0.2em;
}

.post-links.works .post-link .text time {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 0.3em;
}

.post-link a:hover {
  opacity: .6;
}

/*目次の上を開ける*/
.article_body {
  margin-top: 1em;
}

/*blog詳細*/
.author-info {
  background: #f8f9fa;
  padding: 20px;
  margin: 30px 0;
  border: 2px solid #ccc;
}

.author-company {
  border-bottom: 1px solid #ccc;
}

.author-info h3 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 18px;
}

.author-details {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.author-image {
  flex-shrink: 0;
}

.author-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-text {
  flex: 1;
}

.author-name {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: #333;
}

.author-company {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.author-profile {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .author-details {
    flex-direction: column;
    text-align: center;
  }
}

/*関連記事*/
@media screen and (min-width: 768px) {
  .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
}

.related-post-item {
  overflow: hidden;
  transition: transform 0.2s;
}

.related-post-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.related-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.related-post-item h4 {
  padding: 15px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.related-post-item p {
  padding: 0 15px;
  font-size: 12px;
  color: #666;
}

.related-post-item time {
  display: block;
  padding: 0 15px 15px;
  font-size: 11px;
  color: #999;
}

/*タグの表示*/
.article_meta {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.article_categories,
.article_tags {
  margin-bottom: 10px;
}

.meta-label {
  font-weight: 600;
  color: #666;
  margin-right: 8px;
}

.category-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #007cba;
  color: white;
  border-radius: 12px;
  font-size: 12px;
  margin-right: 6px;
  text-decoration: none;
}

.category-tag a {
  color: white;
  text-decoration: none;
}

.tag-item {
  display: inline-block;
  padding: 3px 8px;
  background: #f0f0f0;
  color: #666;
  border-radius: 8px;
  font-size: 11px;
  margin-right: 4px;
  text-decoration: none;
}

.tag-item a {
  color: #666;
  text-decoration: none;
}

.tag-item:hover {
  background: #e0e0e0;
}

/*カテゴリ表示*/
.category-nav {
  margin: 2rem 0;
}

.category-select {
  padding: 1rem 2rem 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #007cba;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  min-width: 280px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007cba' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.category-select:hover {
  border-color: #005a87;
  background-color: #f8f9fa;
}

.category-select:focus {
  outline: none;
  border-color: #005a87;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

@media (max-width: 768px) {
  .category-select {
    min-width: 250px;
    width: 90%;
    font-size: 0.9rem;
    padding: 0.8rem 1.8rem 0.8rem 1.2rem;
  }
}

.cate {
  font-size: 0.8rem
}

.cate a {
  padding: 4px 10px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  margin: 10px 5px 0 0;
  font-size: 12px;
}



.wp-block-heading {
  line-height: 200%;
}

h2.wp-block-heading::before {
  content: "/";
  color: #ff0000;
  margin-right: 0.5rem;
  font-weight: 400;
  font-size: 1.1em;
}

h3.wp-block-heading {
  border-bottom: 1px solid #000;
}

.article_time {
  margin: 20px 0;
}

/*目次のCSS*/

/* ----------------------------------------
* kogma-mokuji
---------------------------------------- */
@media screen and (min-width: 768px) {
  html body div#ez-toc-container {
    width: 94% !important;
    background-color: #fff;
    border-top: 5px double #000;
    border-bottom: 5px double #000;
    margin: 30px 0 3em;
    padding: 1.7em 1.7em 1.4em;
    background-image: repeating-linear-gradient(30deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.04) 3px,
        rgba(0, 0, 0, 0.04) 5px);

  }
}

#ez-toc-container ul li {
  font-size: 1em;
  line-height: 1.3;
  margin-top: 10px;
}

#ez-toc-container ul li a:hover {
  text-decoration: underline;
}

#ez-toc-container ul ul {
  margin: 10px 0 20px;
}

#ez-toc-container ul ul li a {
  line-height: 1.5;
  font-size: .9em;
}

.ez-toc-title {
  text-align: center;
}

.ez-toc-title-container p {
  font-weight: 600;
  margin: 0px;
}

ul.ez-toc-list {
  margin: 0 auto;
  padding: 0 0 0 20px;
}

.ez-toc-list ul {
  counter-reset: hl_count;
  list-style: none;
}

.ez-toc-list li {
  counter-increment: hl_count;
  font-weight: bold;
  padding-left: .5em;
  text-indent: -2em;
}

.ez-toc-list li:before {
  color: #970002;
  content: counters(hl_count, "-");
  font-size: 12px;
  margin-right: .8em;
  padding: .1em 1em;
  text-align: center;
}

.ez-toc-list ul li:before {
  background-color: #fff;
  padding: .1em .5em .1em 2em;
}

/* ----------------------------------------
* mokuji mobile
---------------------------------------- */
@media screen and (max-width: 768px) {

  #ez-toc-container {
    background-color: #ffffff;
    border-top: 5px double #000;
    border-bottom: 5px double #000;
    margin: 30px 0 1em;
    padding: 1.7em 1.7em 1.4em;
    background-image: repeating-linear-gradient(30deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.04) 3px,
        rgba(0, 0, 0, 0.04) 5px);
  }

  .ez-toc-title-container p {
    background-color: #12344b;
    border-radius: 5px;
    color: #ffffff;
    margin-bottom: 15px;
    padding: .1em .3em;
  }

  .ez-toc-list ul li:before {
    margin-right: .3em;
  }

  ul.ez-toc-list {
    padding: 0 0 0 23px;
  }

  #ez-toc-container ul li a {
    text-decoration: underline;
  }
}

.manual-related-posts h3 {
  margin-top: 30px;
}


@media screen and (max-width: 768px) {
  .related-posts-grid {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}

/* 段落ブロック間のスペース */
.wp-block-paragraph {
  margin-bottom: 1.5em;
}

/* または、より具体的に */
.article_body p,
.wp-block-paragraph {
  margin-bottom: 1.5em;
  font-size: 16px;
}

.ez-toc-title {
  font-size: 20px !important;
}

.breadcrumb {
  color: #333333;
  font-size: 0.8rem;
}

.breadcrumb a {
  color: #333333;
}

.wp-block-list {
  padding: 0 0px 0 20px;
}

.wp-block-list li {
  list-style: initial !important;
  line-height: 200%;
}

ol.wp-block-list li {
  list-style-type: decimal !important;
  line-height: 200%;
}

ul.wp-block-list {
  list-style-type: disc !important;
}

.related_articles {
  margin-top: 40px;
}

.operation {
  line-height: 200%;
}

.operation a {
  border-bottom: 1px solid #ccc;
}

@media (min-width:1024px) {
  .top_return {
    left: 20px !important;
  }
}

.footer {
  background: transparent !important;
}

/* ブログ一覧ページネーション */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 150px;
}

.pagination a:hover {
  color: #333;
  background: transparent;
}

.pagination .page-numbers {
  margin: 0 6px;
  text-decoration: none;
  border: none;
}

.page-numbers.current {
  font-weight: bold;
  border-bottom: 3px solid #E88491;
  color: #E88491;
}

.pagination .current,
.page-numbers {
  background-color: transparent;
  color: #2f3030;
}

.next.page-numbers,
.prev.page-numbers {
  background-color: #9fa0a0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

.next.page-numbers:hover,
.prev.page-numbers:hover {
  background-color: #333;
  color: #fff;
}