/*
Theme Name: Toriisogi Child
Theme URI: https://toriisogi.com/
Description: Toriisogi Child Theme
Author: Toriisogi
Author URI: https://toriisogi.com/
Template: theme_toriisogi
Version: 1.0.0
*/
/* Add your custom styles here */
body{
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}
html{
  overflow-x: hidden;
}

body.is-menu-open{
  overflow: hidden;
}

body.is-opening{
  overflow: hidden;
}

.opening{
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #F9F9F8;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1), visibility 0.9s ease;
  overflow: hidden;
}

.opening.is-hide{
  transform: translateX(100%);
  visibility: hidden;
}

.opening__inner{
  position: relative;
}

.opening__logo{
  display: block;
  width: min(48vw, 300px);
  height: auto;
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  animation: openingLogoIn 1.1s ease 0.2s forwards;
}

.opening.is-hide .opening__logo{
  opacity: 0;
  transition: opacity 0.25s ease;
}

@keyframes openingLogoIn{
  0%{
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  70%{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100%{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.is-opening .home .fv__title.scroll-anim,
body.is-opening .home .fv__text.scroll-anim,
body.is-opening .home .fv__btn-wrap.scroll-anim {
  opacity: 0;
  transform: translateY(16px);
}

body.is-opening-done .home .fv__title.scroll-anim,
body.is-opening-done .home .fv__text.scroll-anim,
body.is-opening-done .home .fv__btn-wrap.scroll-anim {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.is-opening-done .home .fv__title.scroll-anim {
  transition-delay: 0.08s;
}

body.is-opening-done .home .fv__text.scroll-anim {
  transition-delay: 0.3s;
}

body.is-opening-done .home .fv__btn-wrap.scroll-anim {
  transition-delay: 0.5s;
}

.scroll-anim {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.6s ease-out;
}

.scroll-anim.fadeIn {
  transform: none;
}

.scroll-anim.fadeInUp {
  transform: translateY(8px);
}

.scroll-anim.fadeInDown {
  transform: translateY(-8px);
}

.scroll-anim.fadeInRight {
  transform: translateX(-8px);
}

.scroll-anim.fadeInLeft {
  transform: translateX(8px);
}

.scroll-anim.is-animated {
  opacity: 1;
  transform: none;
}


.header{
  height: 90px;
}

.header__main{
  padding: 0;
}
.header__logo-link{
  padding: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
}

.header__nav-list a{
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .fv,
  .news,
  .philosophy,
  .business,
  .strength,
  .works,
  .company,
  .contact,
  .footer {
    overflow-x: clip;
  }

  .m_section-title {
    overflow-x: clip;
  }

  .header{
    background: transparent;
    box-shadow: none;
    height: auto;
  }
  .header__sp{
    background: transparent;
  }
  .header.is-open .header__sp{
    background: rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  .header__sp-inner{
    padding: 0 20px 0 0;
  }
  .header__sp .header__logo-link,
  .header__sp .header__logo-img{
    transition: opacity 0.18s ease;
  }
  .header__toggle-line{
    background: #fff;
  }
  .header.is-white{
    background: #F9F9F8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  .header.is-white .header__sp-inner{
    height: 70px;
    align-items: center;
  }
  .header.is-white .header__sp .header__logo-link{
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .header.is-white .header__sp .header__logo-img{
    width: 120px;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
  }
  .header.is-white .header__toggle-line{
    background: linear-gradient(90deg, #31efc0 0%, #8deb26 100%);
  }
  .header__sp-menu{
    height: calc(100vh - 70px);
    max-height: 0;
    background: rgba(255,255,255,0.98);
    overflow-y: auto;
  }
  .header.is-open .header__sp-menu{
    max-height: calc(100vh - 70px);
  }
  .header__sp-nav-list li{
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }
  .header__sp-nav-list a{
    color: #333;
  }
  .header__sp-contact-link{
    display: block;
    background: transparent;
    padding: 0;
  }
  .header__sp-contact-img{
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    height: auto;
  }
  .header__sp-fixed-contact{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    padding: 10px 12px calc(env(safe-area-inset-bottom) + 8px);
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .header.is-fixed-contact-visible .header__sp-fixed-contact{
    opacity: 1;
    visibility: visible;
  }
  .header__sp-fixed-contact-grid{
    display: flex;
    justify-content: space-between;
    gap: 8px;
    max-width: 360px;
    margin: 0 auto;
    pointer-events: auto;
  }
  .header__sp-fixed-contact-link{
    display: block;
    width: 48%;
  }
  .header__sp-fixed-contact-img{
    display: block;
    width: 100%;
    height: auto;
  }
  .header__sp-fixed-mail-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    padding: 10px 8px;
    background-image: linear-gradient(90deg, #FF6D00, #F4A53D);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
  }
  .header__sp-fixed-mail-text{
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .header.is-open .header__sp-fixed-contact{
    opacity: 0;
    visibility: hidden;
  }
}

/* fv */
.fv{
  height: 64vw;
  position: relative;
  z-index: 2;
}
.fv__overlay{
  display: none;
}
.fv__inner{
  justify-content: left;
  max-width: initial;
  min-height: initial;
  height: 100%;
  padding-left: 10vw;
}
.fv__content{
  max-width: initial;
}
.fv__title-en{
  text-align: left;
}
.fv__title-ja{
  text-align: left;
}
.fv__text{
  margin:36px 0 0;
  text-align: left;
}
.fv__btn-wrap{
  text-align: left;
}
.fv__btn{
  background-image: linear-gradient(90deg, #FF6D00,#F4A53D);
}

@media screen and (max-width: 768px) {
  .fv{
    min-height: initial;
    height: calc(100vh - 70px);
  }
  .fv__inner{
    height: 100%;
    transform: none;
    padding: 94px 20px 34px;
    justify-content: center;
    align-items: center;
  }
  .fv__content{
    width: 100%;
  }
  .fv__title-en{
    font-size: 9.6vw;
    line-height: 1.15;
  }
  .fv__title-ja{
    margin-top: 10px;
    font-size: 7vw;
    line-height: 1.35;
  }
  .fv__text{
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 1.9;
  }
  .fv__text br.pc{
    display: none;
  }
  .fv__btn-wrap{
    margin-top: 28px;
    width: 100%;
  }
  .fv__btn{
    min-width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    font-size: 1.5rem;
  }
}





/* ========================================
   top customize : news / philosophy / business
   child theme style.css
======================================== */

/* ------------------------------
   共通：背景線画像
------------------------------ */
.news,
.home .philosophy,
.home .business {
  position: relative;
  background-color: #f3f3f3;
  background-image: url("../img/common/bg-grid.png");
  background-repeat: repeat;
  background-position: center top;
}

/* ------------------------------
   共通：セクション見出し
------------------------------ */
.news .m_section-title,
.home .philosophy .m_section-title,
.home .business .m_section-title {
  position: relative;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.news .m_section-title__en,
.home .philosophy .m_section-title__en,
.home .business .m_section-title__en {
  font-family: futura-pt, sans-serif;
font-weight: 400;
font-style: italic;
  font-size: 7.6rem;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #555;
}

.news .m_section-title__jp,
.home .philosophy .m_section-title__jp,
.home .business .m_section-title__jp {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.4;
  color: #666;
}

/* ========================================
   NEWS
======================================== */
.news {
  position: relative;
  z-index: 1;
  margin-top: -140px;
  margin-bottom: 0;
  padding: 235px 0 120px;
  background-image: url("../theme_toriisogi-child/img/news-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.news .wrapper {
  max-width: 1460px;
  padding-left: 50px;
  padding-right: 50px;
}

.news__title {
  margin-bottom: 88px;
}

/* 筆記体SVG */
.news .m_section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 208px;
  height: 122px;
  background: url("../theme_toriisogi-child/img/news-script.svg") no-repeat center center / contain;
  transform: translateX(18px);
  pointer-events: none;
}

/* NEWSカード一覧 */
.news__list .news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media screen and (min-width: 769px) {
  .news__list .news__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home .m_post-card {
  background: transparent;
}

.home .m_post-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home .m_post-card__thumb {
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
  background: #ddd;
}

.home .m_post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home .m_post-card:hover .m_post-card__img {
  transform: scale(1.05);
}

.home .m_post-card__body {
  padding-top: 16px;
}

.home .m_post-card__title {
  position: relative;
  padding-left: 20px;
  font-size: 1.7rem;
  line-height: 1.75;
  font-weight: 700;
  color: #5a5a5a;
  text-align: left;
}

/* タイトル横ボーダーをCSSで */
.home .m_post-card__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 30px;
  background: linear-gradient(180deg, #91ec24 0%, #36efba 100%);
}

.home .m_post-card__date {
  display: block;
  margin-top: 10px;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
  color: #666;
}

.home .m_post-card__text {
  padding-left: 20px;
  margin-top: 16px;
  font-size: 1.2rem;
  line-height: 2;
  color: #707070;
}

.news__btn-wrap {
  margin-top: 60px;
  text-align: center;
}

/* ========================================
   PHILOSOPHY
======================================== */
.home .philosophy {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.home .philosophy__inner {
  display: flex;
  align-items: stretch;
}

.home .philosophy__img {
  width: 50%;
  flex: 0 0 50%;
  min-height: 720px;
  overflow: hidden;
}

.home .philosophy__img-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home .philosophy__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 75px 70px 75px 85px;
  background: #F2F2F2;
}

.home .philosophy__content-inner {
  width: 100%;
  max-width: 520px;
  padding-top: 0;
}

.home .philosophy__title {
  margin-bottom: 78px;
}

/* 筆記体SVG */
.home .philosophy .m_section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 206px;
  height: 120px;
  background: url("../theme_toriisogi-child/img/philosophy-script.svg") no-repeat center center / contain;
  transform: translateX(58px);
  pointer-events: none;
}

.home .philosophy__heading {
  font-size: 2.8rem;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  color: #555;
}

.home .philosophy__text {
  margin-top: 34px;
  font-size: 1.5rem;
  line-height: 2.45;
  color: #666;
}

/* ========================================
   BUSINESS
======================================== */
.home .business {
  margin-top: 0;
  padding: 130px 0 0px;
  background-color: #fff;
}

.home .business .wrapper {
  max-width: 1460px;
  padding-left: 50px;
  padding-right: 50px;
}

.home .business__title {
  margin-bottom: 88px;
}

/* 筆記体SVG */
.home .business .m_section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 252px;
  height: 138px;
  background: url("../theme_toriisogi-child/img/business-script.svg") no-repeat center center / contain;
  transform: translateX(38px);
  pointer-events: none;
}

.home .business__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
/* 共通ボーダー */
.home .business__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #95eb20 0%, #39efcb 100%);
  z-index: 3;
}

.home .business__item {
  position: relative;
  overflow: hidden;
}



.home .business__link {
  position: relative;
  display: block;
  min-height: 470px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.home .business__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home .business__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 34, 74, 0.34) 0%, rgba(18, 31, 59, 0.52) 45%, rgba(7, 19, 39, 0.68) 100%);
  z-index: 1;
}

.home .business__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s ease;
}

/* hoverで背景画像を拡大 */
.home .business__item:hover .business__img {
  transform: scale(1.08);
}

.home .business__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0px 34px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
}

.home .business__item-title {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
}

.home .business__sub {
  margin-top: 8px;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.home .business__text {
  margin-top: 28px;
  font-size: 1.3rem;
  line-height: 2.2;
  text-align: left;
  color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   responsive
======================================== */
@media screen and (max-width: 1200px) {
  .news .wrapper,
  .home .business .wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .news .m_section-title__en,
  .home .philosophy .m_section-title__en,
  .home .business .m_section-title__en {
    font-size: 6rem;
  }

  .news__list .swiper-wrapper {
    gap: 18px;
  }

  .home .business__content {
    padding: 78px 24px 28px;
  }

  .home .business__item-title {
    font-size: 1.8rem;
  }

  .home .business__sub {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .news,
  .home .philosophy,
  .home .business {
    background-size: 28px 28px;
  }

  .news {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .news {
    padding: 80px 0 70px;
  }

  .news .wrapper,
  .home .business .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news__title,
  .home .business__title {
    margin-bottom: 42px;
  }

  .news .m_section-title__en,
  .home .philosophy .m_section-title__en,
  .home .business .m_section-title__en {
    font-size: 4.8rem;
  }

  .news .m_section-title__jp,
  .home .philosophy .m_section-title__jp,
  .home .business .m_section-title__jp {
    font-size: 1.6rem;
  }

  .news .m_section-title::after {
    width: 132px;
    height: 76px;
    bottom: -14px;
    transform: translateX(38px);
  }

  .news__list .news__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 12px;
  }

  .news__list .m_post-card {
    width: calc((100% - 12px) / 2);
  }

  .home .m_post-card__title {
    font-size: 1.5rem;
  }

  .home .m_post-card__title::before {
    width: 7px;
    height: 26px;
  }

  .home .m_post-card__date {
    font-size: 1.2rem;
  }

  .home .m_post-card__text {
    font-size: 1.2rem;
    line-height: 1.9;
  }

  .home .philosophy__inner {
    display: block;
  }

  .home .philosophy__img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 0.9;
  }

  .home .philosophy__content {
    padding: 42px 24px 50px;
  }

  .home .philosophy__title {
    margin-bottom: 46px;
  }

  .home .philosophy .m_section-title::after {
    width: 136px;
    height: 78px;
    bottom: -14px;
    transform: translateX(50px);
  }

  .home .philosophy__heading {
    font-size: 2.2rem;
  }

  .home .philosophy__text {
    margin-top: 22px;
    font-size: 1.3rem;
    line-height: 2.1;
  }

  .home .business {
    padding: 80px 0 70px;
  }

  .home .business .m_section-title::after {
    width: 162px;
    height: 94px;
    bottom: -16px;
    transform: translateX(42px);
  }

  .home .business__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home .business__item {
    height: auto !important;
  }

  .home .business__link {
    min-height: 260px;
  }

  .home .business__item::before {
    height: 6px;
  }

  .home .business__content {
    padding: 40px 22px 24px;
  }

  .home .business__item-title {
    font-size: 1.8rem;
  }

  .home .business__sub {
    font-size: 1.5rem;
  }

  .home .business__text {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: 2;
  }
}


/* ========================================
   top customize : strength / works / company / contact
   child theme style.css
======================================== */

/* ------------------------------
   共通背景
------------------------------ */
.home .strength,
.home .works,
.home .company,
.home .contact {
  position: relative;
  background-color: #f3f3f3;
  background-image: url("../theme_toriisogi-child/img/bg-grid.png");
  background-repeat: repeat;
  background-position: center top;
}

/* ------------------------------
   共通見出し
------------------------------ */
.home .works .m_section-title,
.home .company .m_section-title,
.home .contact .m_section-title {
  position: relative;
  text-align: center;
}

.home .works .m_section-title__en,
.home .company .m_section-title__en,
.home .contact .m_section-title__en {
  font-size: 7.6rem;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #555;
}

.home .works .m_section-title__jp,
.home .company .m_section-title__jp,
.home .contact .m_section-title__jp {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.4;
  color: #666;
}

/* ========================================
   STRENGTH
======================================== */
.home .strength {
  padding: 120px 0 100px;
}

.home .strength__list {
  margin: 0 auto;
}

.home .strength__item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.home .strength__item + .strength__item {
  margin-top: 56px;
}

/* 偶数は左右反転 */
.home .strength__item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.home .strength__image {
  flex: 0 0 46%;
  overflow: hidden;
  background: #ddd;
}

.home .strength__img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.56;
  object-fit: cover;
}

.home .strength__content {
  flex: 1;
}

.home .strength__content-inner {
  max-width: 100%;
}

.home .strength__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home .strength__head::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 56px;
  background: linear-gradient(180deg, #95eb20 0%, #39efcb 100%);
}

.home .strength__num {
  font-size: 6rem;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  color: #9a9a9a;
}

.home .strength__title {
  font-size:3.8rem;
  line-height: 1.5;
  font-weight: 700;
  color: #505251;
}

.home .strength__text {
  margin-top: 22px;
  font-size: 1.6rem;
  line-height: 2.25;
  color: #666;
}

/* ========================================
   WORKS
======================================== */
.home .works {
  padding: 0px 0 0px;
  background-color: #fff;
  background-image: none;
}

.home .works .wrapper {
  max-width: 1460px;
  padding-left: 50px;
  padding-right: 50px;
}

.home .works__heading {
  margin-bottom: 80px;
}

/* 筆記体SVG */
.home .works .m_section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 220px;
  height: 128px;
  background: url("../theme_toriisogi-child/img/works-script.svg") no-repeat center center / contain;
  transform: translateX(34px);
  pointer-events: none;
}

.home .works__list.swiper {
  overflow: visible;
}

.home .works__list .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.home .works__list .swiper-slide {
  margin-right: 0;
}

@media screen and (min-width: 769px) {
  .home .works__list .swiper-wrapper {
    transform: none !important;
  }

  .home .works__list .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }
}

.home .m_works-card {
  background: transparent;
}

.home .m_works-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home .m_works-card__thumb {
  overflow: hidden;
  background: #ddd;
}

.home .m_works-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.home .m_works-card:hover .m_works-card__img {
  transform: scale(1.06);
}

.home .m_works-card__body {
  padding-top: 18px;
  text-align: center;
}

.home .m_works-card__term {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 14px;
  background: linear-gradient(90deg, #95eb20 0%, #39efcb 100%);
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
}

.home .m_works-card__title {
  margin-top: 14px;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 700;
  color: #555;
}

.home .m_works-card__text {
  margin-top: 12px;
  font-size: 1.15rem;
  line-height: 2;
  color: #6d6d6d;
}

.home .works__btn-wrap {
  margin-top: 60px;
  text-align: center;
}

/* ========================================
   COMPANY
======================================== */
.home .company {
  padding: 130px 0 120px;
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.home .company .wrapper {
  max-width: 1460px;
  padding-left: 50px;
  padding-right: 50px;
}

.home .company__heading {
  margin-bottom: 90px;
}

/* 筆記体SVG */
.home .company .m_section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 252px;
  height: 146px;
  background: url("../theme_toriisogi-child/img/company-script.svg") no-repeat center center / contain;
  transform: translateX(22px);
  pointer-events: none;
}

.home .company__message {
  margin-bottom: 80px;
}

.home .company__message-title {
  position: relative;
  margin-bottom: 42px;
  padding-left: 24px;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 700;
  color: #555;
}

.home .company__message-title::before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 8px;
  height: 56px;
  background: linear-gradient(180deg, #95eb20 0%, #39efcb 100%);
}

.home .company__message-row {
  display: flex;
  align-items: flex-start;
  gap: 58px;
}

.home .company__message-image {
  flex: 0 0 44%;
  background: #b9b9b9;
}

.home .company__message-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
}

.home .company__message-content {
  flex: 1;
  padding-top: 8px;
}

.home .company__message-text {
  font-size: 1.25rem;
  line-height: 2.35;
  color: #666;
}

.home .company__message-text p + p {
  margin-top: 1.4em;
}

.home .company__message-name {
  margin-top: 28px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: right;
  color: #555;
}

.home .company__info {
  max-width: 1040px;
  margin: 0 auto;
}

.home .company__table {
  width: 100%;
  border-collapse: collapse;
}

.home .company__table tr {
  border-bottom: 1px solid #d2d2d2;
}

.home .company__table th,
.home .company__table td {
  padding: 18px 0;
  vertical-align: middle;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #666;
}

.home .company__table th {
  position: relative;
  width: 210px;
  padding-right: 34px;
  font-weight: 700;
  text-align: center;
  color: #555;
}

.home .company__table th::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 18px;
  bottom: -1px;
  height: 4px;
  background: linear-gradient(90deg, #95eb20 0%, #39efcb 100%);
}

.home .company__table td {
  padding-left: 30px;
}

/* ========================================
   CONTACT
======================================== */
.home .contact {
  padding: 130px 0 120px;
  background-image: url("../theme_toriisogi-child/img/bg-grid.png") !important;
  background-repeat: repeat;
}

.home .contact .wrapper {
  max-width: 1180px;
  padding-left: 50px;
  padding-right: 50px;
}

.home .contact__heading {
  margin-bottom: 70px;
}

/* 筆記体SVG */
.home .contact .m_section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 220px;
  height: 132px;
  background: url("../img/common/contact-script.svg") no-repeat center center / contain;
  transform: translateX(40px);
  pointer-events: none;
}

.home .contact__lead {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home .contact__lead p {
  font-size: 1.4rem;
  line-height: 2.4;
  color: #666;
}

.home .contact__tel {
  margin-top: 38px;
  text-align: center;
}



.home .contact__form-area {
  margin-top: 54px;
}

.home .contact-form {
  padding: 50px 50px 60px;
  background: #fff;
}

.home .contact-form p {
  margin: 0;
}

.home .contact-form .wpcf7-form > p + p {
  margin-top: 22px;
}

.home .contact-form input[type="text"],
.home .contact-form input[type="email"],
.home .contact-form input[type="tel"],
.home .contact-form textarea,
.home .contact-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d8d8d8;
  background: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
}

.home .contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.home .contact-form input::placeholder,
.home .contact-form textarea::placeholder {
  color: #9b9b9b;
}

.home .contact-form input[type="submit"] {
  min-width: 240px;
  padding: 16px 28px;
  border: none;
  background: linear-gradient(90deg, #95eb20 0%, #39efcb 100%);
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.home .contact-form .wpcf7-submit-wrap,
.home .contact-form .form-submit,
.home .contact-form .submit {
  margin-top: 34px;
  text-align: center;
}

/* ========================================
   responsive
======================================== */
@media screen and (max-width: 1200px) {
  .home .strength__list,
  .home .works .wrapper,
  .home .company .wrapper,
  .home .contact .wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home .works .m_section-title__en,
  .home .company .m_section-title__en,
  .home .contact .m_section-title__en {
    font-size: 6rem;
  }

  .home .strength__num {
    font-size: 5rem;
  }

  .home .strength__title {
    font-size: 2.4rem;
  }

  .home .company__message-row {
    gap: 34px;
  }
}

@media screen and (max-width: 768px) {
  .home .strength,
  .home .works,
  .home .company,
  .home .contact {
    background-size: 28px 28px;
  }

  .home .strength {
    padding: 80px 0 70px;
  }

  .home .strength__list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home .strength__item,
  .home .strength__item:nth-of-type(even) {
    display: block;
  }

  .home .strength__item + .strength__item {
    margin-top: 40px;
  }

  .home .strength__image {
    margin-bottom: 20px;
  }

  .home .strength__head {
    gap: 12px;
  }

  .home .strength__head::before {
    width: 7px;
    height: 42px;
  }

  .home .strength__num {
    font-size: 4.2rem;
  }

  .home .strength__title {
    font-size: 2.1rem;
  }

  .home .strength__text {
    margin-top: 16px;
    font-size: 1.2rem;
    line-height: 2;
  }

  .home .works {
    padding: 80px 0 70px;
  }

  .home .works .wrapper,
  .home .company .wrapper,
  .home .contact .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home .works__heading,
  .home .company__heading,
  .home .contact__heading {
    margin-bottom: 42px;
  }

  .home .works .m_section-title__en,
  .home .company .m_section-title__en,
  .home .contact .m_section-title__en {
    font-size: 4.8rem;
  }

  .home .works .m_section-title__jp,
  .home .company .m_section-title__jp,
  .home .contact .m_section-title__jp {
    font-size: 1.6rem;
  }

  .home .works .m_section-title::after {
    width: 144px;
    height: 84px;
    bottom: -16px;
    transform: translateX(36px);
  }

  .home .works__list.swiper {
    overflow: hidden;
  }

  .home .works__list .swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .home .works__list .swiper-slide {
    width: 66.6667% !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .home .works__list .m_works-card {
    width: 100%;
  }

  .home .m_works-card__title {
    font-size: 1.6rem;
  }

  .home .m_works-card__text {
    font-size: 1.2rem;
    line-height: 1.9;
  }

  .home .company {
    padding: 80px 0 70px;
  }

  .home .company .m_section-title::after {
    width: 160px;
    height: 92px;
    bottom: -18px;
    transform: translateX(22px);
  }

  .home .company__message {
    margin-bottom: 48px;
  }

  .home .company__message-title {
    margin-bottom: 24px;
    padding-left: 18px;
    font-size: 2.2rem;
  }

  .home .company__message-title::before {
    width: 7px;
    height: 40px;
  }

  .home .company__message-row {
    display: block;
  }

  .home .company__message-image {
    margin-bottom: 20px;
  }

  .home .company__message-text {
    font-size: 1.2rem;
    line-height: 2.1;
  }

  .home .company__message-name {
    margin-top: 20px;
    font-size: 1.6rem;
  }

  .home .company__table th,
  .home .company__table td {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: left;
  }

  .home .company__table th {
    padding-right: 0;
  }

  .home .company__table th::after {
    left: 0;
    right: auto;
    width: 120px;
  }

  .home .company__table td {
    padding-left: 0;
    padding-top: 0;
  }

  .home .contact {
    padding: 80px 0 70px;
  }

  .home .contact .m_section-title::after {
    width: 144px;
    height: 86px;
    bottom: -16px;
    transform: translateX(36px);
  }

  .home .contact__lead p {
    font-size: 1.25rem;
    line-height: 2.1;
    text-align: left;
  }

  .home .contact__tel-link {
    min-width: 100%;
    padding: 16px 18px;
  }

  .home .contact__tel-number {
    font-size: 2.4rem;
  }

  .home .contact__form-area {
    margin-top: 36px;
  }

  .home .contact-form {
    padding: 28px 20px 36px;
  }

  .home .contact-form input[type="text"],
  .home .contact-form input[type="email"],
  .home .contact-form input[type="tel"],
  .home .contact-form textarea,
  .home .contact-form select {
    padding: 14px 14px;
    font-size: 1.3rem;
  }

  .home .contact-form input[type="submit"] {
    width: 100%;
    min-width: 0;
  }
}

/* ========================================
   top customize : contact / footer
   child theme style.css
======================================== */

/* ========================================
   CONTACT
======================================== */
.home .contact {
  position: relative;
  padding: 128px 0 120px;
  background-color: #f3f3f3;
  background-image: url("../img/common/bg-grid.png");
  background-repeat: repeat;
  background-position: center top;
}

.home .contact .wrapper {
  max-width: 1180px;
  padding-left: 50px;
  padding-right: 50px;
}

.home .contact__heading {
  position: relative;
  margin-bottom: 62px;
  text-align: center;
}

.home .contact .m_section-title__en {
  font-size: 7.8rem;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #555;
}

.home .contact .m_section-title__jp {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.4;
  color: #666;
}

.home .contact .m_section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 254px;
  height: 150px;
  background: url("../img/common/contact-script.svg") no-repeat center center / contain;
  transform: translateX(36px);
  pointer-events: none;
}

.home .contact__lead {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.home .contact__lead p {
  font-size: 1.2rem;
  line-height: 2.4;
  color: #666;
}

/* 電話ボタン */
.home .contact__tel {
  margin-top: 34px;
  text-align: center;
}



.home .contact__tel-number {
  margin-top: 2px;
  font-size: 2.3rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* フォーム外枠 */
.home .contact__form-area {
  margin-top: 42px;
}

.home .contact-form {
  padding: 34px 34px 46px;
  border: 1px solid #53efc2;
  background-color: #fff;
}

/* CF7基本 */
.home .contact-form .wpcf7 {
  margin: 0;
}

.home .contact-form .wpcf7 form {
  margin: 0;
}

.home .contact-form .wpcf7-form > p,
.home .contact-form .wpcf7-form > div,
.home .contact-form .wpcf7-form > label {
  margin: 0;
}

.home .contact-form .wpcf7-form > p + p,
.home .contact-form .wpcf7-form > p + div,
.home .contact-form .wpcf7-form > div + p,
.home .contact-form .wpcf7-form > div + div {
  margin-top: 18px;
}

/* ラベル */
.home .contact-form label {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 700;
  color: #666;
}

.home .contact-form .contact-form__label,
.home .contact-form .form-label,
.home .contact-form .wpcf7-form-control-wrap + .contact-form__label {
  display: block;
}

/* 左のグラデバー付き見出し風 */
.home .contact-form .field-title,
.home .contact-form .form-title,
.home .contact-form label > .label-text,
.home .contact-form .wpcf7-list-item-label-title {
  position: relative;
  display: inline-block;
  padding-left: 14px;
}

.home .contact-form .field-title::before,
.home .contact-form .form-title::before,
.home .contact-form label > .label-text::before,
.home .contact-form .wpcf7-list-item-label-title::before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 6px;
  height: 20px;
  background: linear-gradient(180deg, #95eb20 0%, #39efcb 100%);
}

/* 入力欄 */
.home .contact-form input[type="text"],
.home .contact-form input[type="email"],
.home .contact-form input[type="tel"],
.home .contact-form textarea,
.home .contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: #ececec;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  appearance: none;
}

.home .contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.home .contact-form input::placeholder,
.home .contact-form textarea::placeholder {
  color: #a6a6a6;
}

/* チェックボックス群 */
.home .contact-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}

.home .contact-form .wpcf7-list-item {
  margin: 0;
}

.home .contact-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
  color: #666;
  cursor: pointer;
}

.home .contact-form input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #bcbcbc;
  background: #fff;
  position: relative;
}

.home .contact-form input[type="checkbox"]:checked {
  background: linear-gradient(90deg, #31efc0 0%, #8deb26 100%);
  border-color: transparent;
}

.home .contact-form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* プライバシーボックス想定 */
.home .contact-form .privacy-box,
.home .contact-form .privacy-policy,
.home .contact-form .policy-box {
  max-width: 470px;
  margin: 38px auto 0;
  padding: 16px 18px;
  border: 1px solid #bdbdbd;
  background: rgba(255, 255, 255, 0.4);
  font-size: 1.05rem;
  line-height: 2;
  color: #666;
}

/* 送信ボタン */
.home .contact-form .wpcf7-submit,
.home .contact-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 13px 20px;
  border: none;
  background: linear-gradient(90deg, #1fc5df 0%, #3be6c5 100%);
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home .contact-form .wpcf7-submit:hover,
.home .contact-form input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.home .contact-form .wpcf7-spinner {
  display:block;
  vertical-align: middle;
}

.home .contact-form .wpcf7-submit-wrap,
.home .contact-form .submit,
.home .contact-form .form-submit,
.home .contact-form p:has(.wpcf7-submit) {
  margin-top: 42px;
  text-align: center;
}

/* エラー表示 */
.home .contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #d93025;
}

.home .contact-form .wpcf7-not-valid {
  background: #fff7f7;
  outline: 1px solid #d93025;
}

.home .contact-form .wpcf7 form.invalid .wpcf7-response-output,
.home .contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.home .contact-form .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 14px;
  border: 1px solid #d93025;
  background: #fff7f7;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #d93025;
}

/* 送信成功 */
.home .contact-form .wpcf7 form.sent .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 14px;
  border: 1px solid #1f9d6b;
  background: #f2fff8;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1f9d6b;
}

/* 送信中 */
.home .contact-form .wpcf7 form.submitting .wpcf7-submit {
  opacity: 0.7;
  pointer-events: none;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: #334f78;
}

.footer__main {
  padding: 42px 0 34px;
  background: #334f78;
}

.footer .wrapper {
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer__logo {
  text-align: center;
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo-img {
  width: auto;
  max-width: 160px;
}

.footer__nav {
  margin-top: 26px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.footer__nav-link {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}

.footer__nav-link:hover {
  opacity: 0.8;
}

.footer__copy {
  padding: 8px 0;
  background: linear-gradient(90deg, #31efc0 0%, #8deb26 100%);
}

.footer__copy-text {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

/* ========================================
   responsive
======================================== */
@media screen and (max-width: 768px) {
  .home .contact {
    padding: 80px 0 70px;
    background-size: 28px 28px;
  }

  .home .contact .wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home .contact__heading {
    margin-bottom: 40px;
  }

  .home .contact .m_section-title__en {
    font-size: 4.8rem;
  }

  .home .contact .m_section-title__jp {
    font-size: 1.6rem;
  }

  .home .contact .m_section-title::after {
    width: 150px;
    height: 88px;
    bottom: -16px;
    transform: translateX(34px);
  }

  .home .contact__lead p {
    font-size: 1.2rem;
    line-height: 2.1;
    text-align: left;
  }

  .home .contact__tel {
    margin-top: 24px;
    width: 100%;
  }

  .home .contact__tel-link {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    gap: 12px;
    padding: 14px 16px;
    box-sizing: border-box;
  }

  .home .contact__tel-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .home .contact__tel-link::before {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .home .contact__tel-number {
    font-size: 2rem;
  }

  .home .contact__form-area {
    margin-top: 28px;
  }

  .home .contact-form {
    padding: 24px 18px 34px;
  }

  .home .contact-form label {
    font-size: 1.3rem;
  }

  .home .contact-form input[type="text"],
  .home .contact-form input[type="email"],
  .home .contact-form input[type="tel"],
  .home .contact-form textarea,
  .home .contact-form select {
    padding: 13px 14px;
    font-size: 1.3rem;
  }

  .home .contact-form .wpcf7-checkbox {
    display: block;
  }

  .home .contact-form .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 10px;
  }

  .home .contact-form .privacy-box,
  .home .contact-form .privacy-policy,
  .home .contact-form .policy-box {
    max-width: 100%;
    margin-top: 28px;
    padding: 14px;
  }

  .home .contact-form .wpcf7-submit,
  .home .contact-form input[type="submit"] {
    width: 100%;
    min-width: 0;
  }

  .footer__main {
    padding: 34px 0 28px;
  }

  .footer__logo-img {
    max-width: 120px;
  }

  .footer__nav {
    margin-top: 18px;
  }

  .footer__nav-list {
    gap: 14px 18px;
  }

  .footer__nav-link {
    font-size: 1.3rem;
  }

  .footer__copy-text {
    font-size: 1.1rem;
  }
}

/* archive pagination (child) */
.news__pagination {
  margin-top: 34px;
  text-align: center;
}

.news__pagination .wp-pagenavi {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.news__pagination .wp-pagenavi a,
.news__pagination .wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #f4a53d;
  background: #fff;
  color: #555;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  transition: all 0.25s ease;
}

.news__pagination .wp-pagenavi a:hover,
.news__pagination .wp-pagenavi .current {
  border-color: #ff6d00;
  background-image: linear-gradient(90deg, #ff6d00, #f4a53d);
  color: #fff;
}

.news__pagination .wp-pagenavi .pages,
.news__pagination .wp-pagenavi .extend {
  border: 0;
  min-width: auto;
  padding: 0 4px;
  background: transparent;
  color: #666;
}

@media screen and (max-width: 768px) {
  .news__pagination {
    margin-top: 22px;
  }

  .news__pagination .wp-pagenavi {
    gap: 8px;
  }

  .news__pagination .wp-pagenavi a,
  .news__pagination .wp-pagenavi span {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 1.3rem;
  }
}

/* single article (child project design) */
.single-page {
  background-image: url("../theme_toriisogi-child/img/bg-grid.png");
  background-repeat: repeat;
  background-position: center top;
}

.single-article {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.single-article__cat {
  background-image: linear-gradient(90deg, #31efc0 0%, #8deb26 100%);
  color: #2b4d63;
  font-weight: 700;
  border-radius: 999px;
}

.single-article__title {
  position: relative;
  padding-left: 22px;
  font-size: 3.5rem;
  color: #555;
}

.single-article__title::before {
  content: "";
  position: absolute;
  top: 0.22em;
  left: 0;
  width: 8px;
  height: 1.5em;
  background: linear-gradient(180deg, #95eb20 0%, #39efcb 100%);
}

.single-article__date {
  font-size: 1.4rem;
  font-weight: 700;
}

.single-article__thumb {
  border-radius: 10px;
  overflow: hidden;
}

.single-article__content {
  font-size: 1.6rem;
  line-height: 2.3;
  color: #666;
  overflow-wrap: anywhere;
}

.single-article__content table {
  width: 100%;
  border-collapse: collapse;
}

.single-article__content th,
.single-article__content td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  word-break: break-word;
}

.single-article__content iframe {
  max-width: 100%;
}

.single-article__content h2 {
  position: relative;
  padding-left: 16px;
  font-size: 3rem;
  color: #555;
}

.single-article__content h2::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 6px;
  height: 1.4em;
  background: linear-gradient(180deg, #95eb20 0%, #39efcb 100%);
}

.single-article__content h3 {
  font-size: 2.3rem;
  color: #555;
}

.single-article__content a {
  color: #1ea9c8;
}

.single-article__tags li {
  border: 1px solid #53efc2;
  color: #2b4d63;
  border-radius: 999px;
}

.single-article__pager-archive {
  border: none;
  border-radius: 999px;
  background-image: linear-gradient(90deg, #ff6d00, #f4a53d);
}

.single-article__pager a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .single-article {
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  }

  .single-article__title {
    padding-left: 16px;
    font-size: 2.5rem;
  }

  .single-article__title::before {
    width: 7px;
  }

  .single-article__content {
    font-size: 1.4rem;
    line-height: 2.05;
  }

  .single-article__content table,
  .single-article__content tbody,
  .single-article__content tr,
  .single-article__content th,
  .single-article__content td {
    display: block;
    width: 100%;
  }

  .single-article__content tr {
    margin-top: 8px;
    border-top: 1px solid #ddd;
  }

  .single-article__content th,
  .single-article__content td {
    border: 0;
    padding: 8px 0;
  }

  .single-article__content h2 {
    font-size: 2.2rem;
  }

  .single-article__content h3 {
    font-size: 1.9rem;
  }
}

@media screen and (max-width: 768px) {
  .news,
  .home .philosophy,
  .home .business,
  .home .strength,
  .home .works,
  .home .company,
  .home .contact {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .news {
    margin-top: -110px !important;
    padding-top: 150px !important;
  }

  .home .philosophy {
    padding-top: 0 !important;
  }

  .home .works {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .home .works__heading {
    margin-bottom: 28px !important;
  }

  .home .works__btn-wrap {
    margin-top: 28px !important;
  }
}