@charset "UTF-8";

/*============================================================
共通
============================================================*/
body {
  color: #333;
  background: #F6F6F6;
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  object-fit: contain;
  max-width: 100%;
}

section {
  position: relative;
}

.container {
  max-width: 1320px;
  height: 100%;
  margin: auto;
  position: relative;
}

a {
  transition: all .3s;
}

a:hover {
  opacity: .8;
  cursor: pointer;
}

/* アニメーション */
.fade_in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s ease-out, transform .5s ease-out;
}

.fade_in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade_in.delay {
  transition-delay: 0.2s;
}

.fade_in.delay2 {
  transition-delay: 0.4s;
}

/* タブレット */
@media (max-width: 1320px) {
  .container {
    max-width: 95vw;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*============================================================
header
============================================================*/
header {
  background: #fff;
  display: flex;
  padding: 0 24px 0 48px;
  justify-content: space-between;
  align-items: center;
  height: 87px;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
}

.header_logo {
  max-width: 226px;
  vertical-align: middle;
}

header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

header nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

header nav ul a {
  text-decoration: none;
}

.header_menu {
  font-size: 16px;
  border-bottom: none;
  gap: 31px;
  color: #333;
  letter-spacing: .12em;
}

.header_menu a {
  color: #333;
}

.header_buttons {
  gap: 16px;
  color: #fff;
}

.header_buttons a {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: .05em;
  border-radius: 27.5px;
  height: 55px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

header nav .header_buttons a.changeJob {
  background: #EE2AC4;
  width: 150px;
}

header nav .header_buttons a.contact {
  background: #046FE3;
  width: 186px;
}

.header_hamburger {
  display: none;
}

.open_nemu {
  position: fixed;
  top: 87px;
  right: -100%;
  width: 100vw;
  height: 100vh;
  background: white;
  transition: right 0.3s ease;
  z-index: -1;
  padding: 64px 24px;
  overflow-y: auto;
}

.open_nemu.active {
  right: 0;
}

.header_button_top {
  align-items: center;
  gap: 16px;
  justify-content: start;
  display: flex;
}

.open_nemu h3 {
  font-size: 40px;
  line-height: normal;
  letter-spacing: .05em;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.open_nemu p {
  font-size: 16px;
  line-height: normal;
  letter-spacing: .0em;
  color: #333;
  margin-left: 56px;
}

.open_nemu a {
  text-decoration: none;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D9D9D9;
  display: block;
}

.open_nemu a .icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, .0);
}

.open_nemu a .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-25%, -50%);
  left: 50%;
  border: 6px solid transparent;
  border-left: 7.5px solid #7783E3;
  box-sizing: border-box;
}


/* タブレット */
@media (max-width: 1320px) {}

@media (max-width: 1200px) {
  header nav {
    display: none;
  }

  .header_hamburger {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-right: 24px;
  }

  .header_hamburger>div {
    height: 2px;
    width: 32px;
    background: #000;
  }
}

/* スマホ */
@media (max-width: 768px) {
  header {
    padding: 0 12px 0 24px;
    height: 64px;
  }

  .header_logo {
    max-width: 40vw;
  }

  .open_nemu {
    top: 64px;
  }

  .open_nemu h3 {
    font-size: 28px;
  }
}

/*============================================================
fv
============================================================*/
#fv {
  position: relative;
  height: 100vh;
  margin-bottom: 39px;
}

#fv::before {
  position: absolute;
  content: "";
  top: -80%;
  left: -22%;
  height: 500vh;
  width: 150vw;
  background-image: url(/wp-content/themes/swell_child/asset/img/main_bg.png);
  background-position: center;
  background-size: 85%;
  background-repeat: no-repeat;
  z-index: -1;
}

#fv .fv_title {
  position: absolute;
  top: 30%;
  left: 44%;
  text-wrap: nowrap;
}

#fv h1 {
    font-size: 70px;
    font-weight: bold;
    letter-spacing: 10px;
    margin-bottom: 15px;
    line-height: 1.2;
}

#fv h2 {
  font-size: 20px;
  position: relative;
  letter-spacing: 0.1em;
	font-weight: bold;
}


/* blog_item */
.blog_item {
  background: #fff;
  max-width: 338px;
  border-radius: 0px 24px 24px 0px;
  padding: 24px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 50px;
}

#fv .blog_item {
  max-width: 270px;
}

.blog_item img {
  border-radius: 16px 16px 0 0;
  margin-bottom: 16px;
}

.blog_item .date {
  color: #571AD2;
  font-size: 15px;
  letter-spacing: .04em;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.blog_item h4 {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: .04em;
  margin-bottom: 16px;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 16px;
}

.blog_item .blog_tag {
  font-size: 16px;
  letter-spacing: .04em;
  align-items: start;
  justify-content: start;
  gap: 20px;
  display: flex;
  color: #571AD2;
}

.button_icon {
  width: 48px;
  height: 48px;
  border: 1px solid #D9D9D9;
  border-radius: 100%;
  position: relative;
  margin-left: auto;
}

.button_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-25%, -50%);
  left: 50%;
  border: 7.2px solid transparent;
  border-left: 8px solid #7783E3;
  box-sizing: border-box;
}

/* タブレット */
@media (max-width: 1320px) {
  #fv::before {
    top: -80%;
    left: -15%;
    background-size: 80%;
  }
}

@media (max-width: 1200px) {
  #fv h1 {
    font-size: 48px;
  }

  #fv h2 {
    font-size: 14px;
  }

  .blog_item {
    max-width: 38vw;
  }
}

@media (max-width: 1080px) {
  #fv::before {
    top: -100%;
    left: -10%;
    background-size: 100%;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #fv::before {
	  top: -40%;
        left: -25%;
        width: 90%;
        background-image: url(/wp-content/themes/swell_child/asset/img/fv_bg_sp.png);
        background-repeat: no-repeat;
        height: 1400px;
        scale: 180%;
  }

  #fv .fv_title {
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-wrap: inherit;
  }

  #fv h1 {
    font-size: 30px;
    line-height: 56px;
    letter-spacing: 0.09em;
  }

  #fv h2 {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.12em;
  }

  #fv .blog_item {
    max-width: 100%;
    display: flex;
    bottom: 25%;
    gap: 16px;
  }

  #fv .blog_item img {
    width: 104px;
    height: 104px;
    object-fit: cover;
    border-radius: 8px;
  }

  #fv .blog_item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100vw;
    height: 100%;
    width: 100vw;
    background: #fff;
    z-index: -1;
  }

  .blog_item h4 {
    font-size: 16px;
    line-height: normal;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .button_icon {
    width: 32px;
    height: 32px;
    margin: 0 0 0 auto;
    margin-left: auto !important;
  }

  .button_icon::before {
    border: 4.8px solid transparent;
    border-left: 6px solid #7783E3;
  }

  .blog_item .button_icon {
    margin: 8px 0 0 auto;
  }
}

/*============================================================
Our Value
============================================================*/
#ourValue .container {
  background: #fff;
  border-radius: 32px 0 0 32px;
  padding: 104px 120px;
  margin-bottom: 120px;
}

 section:not(#fv) h2 {
  background: linear-gradient(90deg, #0071E3, #A155FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 64px;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  letter-spacing: 0.05em;
  display: table;
  margin-bottom: 3px;
  font-weight: 500;
}

.h2_sub {
  font-size: 18px;
  text-align: left;
  letter-spacing: .05em;
  margin-bottom: 80px;
}

section h3 {
  font-size: 36px;
  font-weight: bold;
  text-align: start;
  line-height: 48px;
  letter-spacing: .08em;
  margin-bottom: 40px;
}

#ourValue p:not(.h2_sub) {
  font-size: 20px;
  text-align: start;
  line-height: 32px;
  letter-spacing: .08em;
  margin-bottom: 32px;
}

.viewMore {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  letter-spacing: .05em;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 24px 14px 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 328px;
  height: 72px;
  box-sizing: border-box;
  margin-top: 64px;
  text-decoration: none;
  color: #333;
}

.viewMore .button_icon {
  width: 40px;
  height: 40px;
}

.viewMore .button_icon::before {
  border: 4.8px solid transparent;
  border-left: 6px solid #7783E3;
}

.ourValue1 {
  position: absolute;
  top: -40px;
  right: 0px;
  width: 574px;
  z-index: 1;
}

.ourValue2 {
  position: absolute;
  bottom: -40px;
  right: 0px;
  width: 475px;
  z-index: 1;
}

/* タブレット */
@media (max-width: 1320px) {
  .ourValue1 {
    width: 36vw;
  }

  .ourValue2 {
    width: 33vw;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #ourValue {
    margin-top: 48px;
  }

  #ourValue .container {
    padding: 88px 24px 188px;
  }

  section:not(#fv) h2 {
    font-size: 36px;
  }

  p.h2_sub {
    font-size: 14px;
    margin-bottom: 40px;
  }

  section h3 {
    font-size: 20px !important;
    line-height: 32px !important;
  }

  #ourValue p:not(.h2_sub) {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .viewMore {
    font-size: 16px;
    margin-top: 32px;
    height: 36px;
    width: 80%;
    max-width: 260px;
	  background: #fff;
  }

  .viewMore .button_icon {
    width: 32px;
    height: 32px;
  }

  .viewMore .button_icon::before {
    border: 4.8px solid transparent;
    border-left: 6px solid #7783E3;

  }

  .ourValue1 {
	  top: -200px;
        width: 60%;
  }

  .ourValue2 {
        bottom: -90px;
        width: 80%;
  }
}

/*============================================================
solution
============================================================*/
#solution {
  margin-bottom: 98px;
	position: relative;
	z-index: 1;

}

#solution h2 {
  margin: auto;
}

#solution .h2_sub {
  text-align: center;
}

/* 解決 */
.solution_main {
  background: #fff;
  border-radius: 32px;
  max-width: 1080px;
  margin: 0 auto 59px;
  padding: 18px 0 66px;
}

.solution_main h3 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: .05em;
  margin-bottom: 11px;
  transform: translateY(-46px);
}

.solution_main .h3_sub {
  text-align: center;
  font-size: 20px;
  line-height: 1.6em;
  font-weight: bold;
  letter-spacing: .05em;
  transform: translateY(-46px);
}

.solution_main1 {
  max-width: 952px;
  margin: 0 auto 48px;
  display: block;
}

.solution_main2 {
  max-width: 952px;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.solution_main2-1 {
  background: #F1F0FF;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3em;
  letter-spacing: .05em;
  padding: 40px 0;
  position: relative;
}

.solution_main2-1::before {
  content: "";
  position: absolute;
  bottom: -64px;
  transform: translate(-50%, 0%);
  left: 50%;
  border: 40px solid transparent;
  border-top: 32px solid #F1F0FF;
  box-sizing: border-box;
}

.solution_main2-1 span {
  color: #0771E4;
}

.solution_main2-2 {
  background: linear-gradient(90deg, #0071E3, #A155FF);
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3em;
  letter-spacing: .05em;
  padding: 40px 0;
  color: #fff;
}

/* サービス一覧 */
.service_main {
  max-width: 1080px;
  margin: auto;
  padding: 18px 0 66px;
}

.service_main h3 {
  letter-spacing: .12em;
  margin-bottom: 46px;
}

.service_all {
  display: flex;
  max-width: 967px;
  justify-content: space-between;
  margin: auto;
  gap: 34px;
}

.service_item {
  position: relative;
    width: 31%;
}

.service_item img {
  margin-bottom: 20px;
}

.service_item .number {
  position: absolute;
  font-size: 64px;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(90deg, #0071E3, #A155FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: .05em;
  line-height: 1.6em;
  top: -48px;
  left: -16px;
}

.service_item h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 24px;
  letter-spacing: .04em;
  text-align: start;
  margin-bottom: 12px;
}

.service_item a {
    font-size: 15px;
    text-align: start;
    letter-spacing: 0em;
    line-height: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-weight: bold;
}

.solution_main1_sp {
  display: none;
}

.solution_main2_br {
  display: none;
}

/* タブレット */
@media (max-width: 1320px) {
  .service_item a {
    justify-content: space-between;
    gap: 24px;
  }

  .service_item .button_icon {
    margin-left: 0;
  }
}

@media (max-width: 1080px) {
  #solution {
    margin-bottom: 64px;
  }

  .service_all {
    flex-direction: column;
    gap: 60px;
  }

  .service_item {
    width: 50%;
    margin: auto;
  }

  .service_item h4 {
    display: table;
  }

  .service_item img {
    max-width: 100%;
  }

  .solution_main1 {
    display: none;
  }

  .solution_main1_sp {
    display: block;
    margin: 0 auto 48px;
    max-width: 360px;
    width: 95%;
  }

  .solution_main2 {
    max-width: 360px;
    width: 95%;
  }

  .solution_main2-1 {
    font-size: 18px;
    line-height: normal;
    letter-spacing: .0em;
  }

  .solution_main2-2 {
    font-size: 18px;
    line-height: normal;
    letter-spacing: .0em;
  }

  .solution_main2_br {
    display: block;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .solution_main h3 {
    font-size: 20px;
    transform: translateY(-32px);
  }

  .solution_main .h3_sub {
    font-size: 12px;
    transform: translateY(-32px);
  }

  .service_item .number {
    left: 0;
  }

  .service_item img {
    max-width: 100%;
  }

  .service_item a {
    justify-content: space-between;
  }

  .service_main {
    padding: 18px 0;
  }

  #solution {
    margin-bottom: 40px;
  }

  .service_item {
    width: 100%;
  }
}

/*============================================================
news
============================================================*/
#news {
  margin-bottom: 81px;
}

#news .container {
  background: #fff;
  border-radius: 32px 0 0 32px;
  padding: 104px 0 104px 120px;
  background: rgba(255, 255, 255, .4);
  border-radius: 32px 0 0 32px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  display: flex;
  justify-content: start;
  gap: 103px;
  backdrop-filter: blur(24px);
}

#news::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(/wp-content/themes/swell_child/asset/img/news_bg.png);
  height: 200%;
  width: 100vw;
  background-repeat: no-repeat;
  background-size: 94%;
  background-position: center;
  z-index: -1;
}

#news .viewMore {
  margin-top: -17px;
	background: #fff;
}

#news .viewMore:hover {
	background: linear-gradient(90deg, #0071E3, #A155FF);
}

.news_wrap {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.news_item {
  display: flex;
  align-items: center;
  text-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  gap: 24px;
}

.news_item img {
    max-width: 204px;
    border-radius: 16px;
    height: 200px;
    object-fit: scale-down;
}

.news_info {
  padding: 10px 0;
}

.news_tag {
  display: flex;
  font-size: 14px;
  letter-spacing: .04em;
  align-items: center;
  justify-content: start;
  gap: 16px;
  color: #7783E3;
}

.news_item .date {
  color: #7783E3;
  font-size: 16px;
  letter-spacing: .04em;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
}

.news_item h4 {
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .04em;
  margin-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 17px;
  max-width: 292px;
}

.news_item .pre_release {
  border: 1px solid #7783E3;
  border-radius: 17px;
  padding: 4px 16px;
}

.news_item .button_icon {
  margin-left: 17px;
}

/* タブレット */
@media (max-width: 1320px) {
  #news .container {
    flex-direction: column;
  }

  .news_item {
    max-width: max-content;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #news .container {
    padding: 48px 24px;
    gap: 48px;
  }

  .news_item {
    flex-direction: initial;
    margin: auto;
    gap: 12px;
	  padding: 10px;
  }

  .news_item img {
    max-width: 100%;
	  width:40%;
height: initial;
	  border-radius: 5px;
  }

  .news_item h4 {
    padding-bottom: 10px;
    margin-bottom: 0;
    border-bottom: none;
    max-width: unset;
font-size: 14px;
    line-height: initial;
  }
}

/*============================================================
about
============================================================*/
#about .container {
  padding: 76px 120px 102px 120px;
  background: #fff;
  display: flex;
  gap: 80px;
  border-radius: 32px 0 0 32px;
  transform: translateY(-122px);
}

#about .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  height: 100%;
  width: 100vw;
  background: #fff;
  z-index: -1;
}

#about .viewMore {
  margin-top: 156px;
}

#about h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: .08em;
  margin-bottom: 40px;
}

#about h4 {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: .08em;
  font-weight: bold;
  margin-bottom: 32px;
}

#about p:not(.h2_sub) {
  font-size: 20px;
  line-height: 36px;
  letter-spacing: .08em;
  text-align: start;
}

/* タブレット */
@media (max-width: 1320px) {
  #about .container {
    flex-direction: column;
  }

  #about .viewMore {
    margin-top: 0;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #about {
    margin-bottom: 64px;
  }

  #about .container {
    transform: translateY(-32px);
    padding: 48px 24px;
    gap: 24px;
  }
	
  #about h3 {
    font-size: 20px;
    line-height: 32px;
  }

  #about h4 {
    font-size: 16px;
    line-height: 24px;
  }

  #about p:not(.h2_sub) {
    font-size: 12px;
    line-height: 20px;
  }
}

/*============================================================
blog
============================================================*/
#blog {
  background-image:
    linear-gradient(to top right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 80%),
    linear-gradient(to right, #4DA6FF, #E5A6FF);
  margin-top: -50px;
}

#blog .container {
  padding: 118px 120px 97px 120px;
  display: flex;
  gap: 71px;
}

#blog .viewMore {
  background: #fff;
  margin-top: -21px;
}

#blog .text {
  margin-top: 13px;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: .08em;
  text-align: start;
}

.blog_main {
  display: flex;
  justify-content: space-between;
  padding: 0 120px 145px;
  max-width: 1320px;
  margin: auto;
}

#blog .blog_item {
  position: relative;
  border-radius: 24px;
}

.blog_item img {
    margin-bottom: 10px;
    height: 200px;
    object-fit: scale-down;
}

#blog .blog_item .date {
  color: #571AD2;
  font-size: 15px;
  line-height: normal;
  letter-spacing: .04em;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

#blog .button_icon_sp {
  display: none;
}

/* タブレット */
@media (max-width: 1320px) {
  .blog_main {
    flex-direction: column;
    gap: 30px;
  }

  #blog .blog_item {
    max-width: 100%;
    display: flex;
    gap: 24px;
    align-items: center;
    max-width: max-content;
  }

  #blog .blog_item img {
    max-width: 204px;
    border-radius: 16px;
  }

  #blog .blog_item h4 {
    max-width: 292px;
  }

  .blog_item .button_icon_sp {
    display: block;
    margin-left: 0;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #blog {
    margin-bottom: 64px;
    padding-bottom: 24px;
  }

  #blog .container {
    padding: 48px 24px;
    flex-direction: column;
    gap: 24px;
  }

  #blog .viewMore {
    margin-top: 0;
  }

  #blog .text {
    font-size: 12px;
    line-height: 20px;
  }

  .blog_main {
    padding: 0;
    width: 95vw;
  }

  .blog_item {
    padding: 12px;
  }

  #blog .blog_item img {
    width: 104px;
    height: 104px;
    object-fit: cover;
    margin-bottom: 0;
  }
}

/*============================================================
aboutUs
============================================================*/
#aboutUs {
  background-image: url(/wp-content/themes/swell_child/asset/img/aboutUs_img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

#aboutUs .container {
  padding: 104px 120px 128px 120px;
}

#aboutUs h3 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: .08em;
  margin-bottom: 40px;
}

#aboutUs p {
  color: #fff;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: .08em;
}

/* タブレット */
@media (max-width: 1320px) {
  section#hito::before {
    top: 54%;
    right: -55%;
    background-size: 100%;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #aboutUs .container {
    padding: 48px 24px;
  }

  #aboutUs h3 {
    font-size: 20px;
  }

  #aboutUs p {
    font-size: 12px;
    line-height: 20px;
  }
}

/*============================================================
hito
============================================================*/
#hito::before {
  position: absolute;
  content: "";
  top: 43%;
  right: -28%;
  transform: translate(0%, -50%);
  background-image: url(/wp-content/themes/swell_child/asset/img/aboutUs.png);
  height: 500%;
  width: 100vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 87%;
  z-index: -1;
}

#hito .container {
  padding: 159px 120px 104px 120px;
}

#hito h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 56px;
  letter-spacing: .08em;
  margin-bottom: 40px;
}

#hito p {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: .08em;
  margin-bottom: 33px;
}

.hito_wrap {
  display: flex;
  max-width: 1320px;
  margin: 18px auto 139px;
  justify-content: space-between;
  gap: 41px;
  padding: 0 2.5vw;
}

.hito_wrap img {
  max-width: calc((100% - 41px * 2) / 3);
  flex: 1;
}

/* タブレット */
@media (max-width: 1320px) {
  /* #hito h3 {
    font-size: 22px;
  }

  #hito p{
    font-size: 16px;
  } */
}

/* スマホ */
@media (max-width: 768px) {
  #hito .container {
    padding: 48px 24px;
  }

  #hito h3 {
    font-size: 20px;
    line-height: 32px;
  }

  #hito p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 24px;
  }

  .hito_wrap {
    flex-direction: column;
  }

  .hito_wrap img {
    max-width: 100%;
    aspect-ratio: 1/1;
  }

  .hito_wrap img {}
}

/*============================================================
strength
============================================================*/
#strength h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 48px;
  letter-spacing: .16em;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

#strength .container {
  background: #fff;
  padding: 86px 120px 104px 120px;
  border-radius: 32px 0 0 32px;
  margin: 0 auto 112px;
  position: relative;
}

#strength .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  height: 100%;
  width: 100vw;
  background: #fff;
  z-index: -1;
}

.strength_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid #D9D9D9;
}

.strength_item p {
  font-size: 18px;
  letter-spacing: .08em;
  margin-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.strength_item p::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #045EC5;
  top: 12px;
  left: -24px;
  transform: translateY(-25%);
}

#strength h4 {
  font-size: 28px;
  line-height: 40px;
  letter-spacing: .08em;
  font-weight: bold;
  margin-bottom: 24px;
}

#strength h4 span {
  color: #045EC5;
}

.strength_item img {
  max-width: 286px;
}

.strength_item:nth-child(2) {
  padding-top: 0;
}

.strength_item:last-child {
  border: none;
  padding-bottom: 0;
}

/* タブレット */
@media (max-width: 1320px) {
  .strength_item {
    flex-direction: column;
  }

  .strength_item img {
    margin-top: 30px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #strength .container {
    padding: 48px 24px;
  }

  #strength h3 {
    font-size: 20px;
    line-height: 32px;
  }

  #strength h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .strength_item p {
    font-size: 12px;
    line-height: 20px;
    margin-left: 12px;
  }

  .strength_item p::before {
    width: 6px;
    height: 6px;
    top: 9px;
    left: -12px;
  }
}

/*============================================================
support
============================================================*/
#support {
  background-image: url("/wp-content/themes/swell_child/asset/img/support_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 91px 0;
  z-index: 1;
}

#support .container {
  max-width: 1200px;
}

#support h3 {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 48px;
  margin-bottom: 40px;
  text-align: center;
}

#support h4 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: .08em;
  line-height: 40px;
  margin-bottom: 30px;
  text-align: center;
}

#support .text {
  color: #fff;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: .08em;
  margin-bottom: 81px;
  text-align: center;
}

.support_wrap {
  background: #fff;
  padding: 70px 93px;
}

.support_flex {
  display: flex;
  margin: auto;
  justify-content: space-between;
  gap: 30px;
}

.support_item h5 {
  background: #222222;
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: .07em;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support_item p {
  font-size: 18px;
  line-height: normal;
  letter-spacing: .08em;
  margin-left: 24px;
  position: relative;
  color: #010101;
  text-align: start;
  margin-bottom: 16px;
}

.support_item p::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #7783E3;
  top: 8px;
  left: -24px;
}

.support_item {
  flex: 1;
}

.support_text {
  background: #F6F6F6;
  padding: 23px 24px;
  height: 305px;
}

/* タブレット */
@media (max-width: 1320px) {
  .container {
    max-width: 95vw;
  }

  .support_flex {
    flex-direction: column;
  }

  .support_text {
    height: auto;
  }

  .support_item p {
    display: table;
    margin: 0 0 30px auto;
    width: 80%;
  }

  .support_item p:last-child {
    margin-bottom: 0;
  }

  .support_text br {
    display: none;
  }

  .support_wrap {
    max-width: 95vw;
    margin: auto;
  }
}

@media (max-width: 1080px) {
  .support_item p {
    width: 100%;
    margin-left: 24px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #support {
    padding: 40px 24px;
  }

  .support_wrap {
    padding: 24px;
  }

  #support h3 {
    font-size: 20px;
    line-height: 32px;
  }

  #support h4 {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  #support .text {
    font-size: 12px;
    line-height: 20px;
    text-align: left;
  }

  .support_item h5 {
    font-size: 14px;
    line-height: 22px;
    height: 52px;
  }

  .support_item p {
    font-size: 12px;
    line-height: 20px;
    margin: 0 0 0 12px;
    width: auto;
    margin-bottom: 12px;
    padding-left: 6px;
  }

  .support_item p::before {
    width: 6px;
    height: 6px;
    left: -12px;
  }
}

/*============================================================
consultant
============================================================*/
#consultant {
  margin-bottom: 82px;
}

#consultant::after {
  position: absolute;
  content: "";
	top: 49%;
    right: -32%;
  transform: translate(0%, -50%);
  background-image: url(/wp-content/themes/swell_child/asset/img/aboutUs.png);
  height: 100%;
  width: 100vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  z-index: -1;
}

#consultant .container {
  display: flex;
  padding: 104px 120px;
  gap: 80px;
}

#consultant .h2_sub {
  margin-bottom: 40px;
}

#consultant h3 {
  font-size: 24px;
  line-height: 40px;
  letter-spacing: .08em;
  margin-bottom: 30px;
}

#consultant .text {
  font-size: 20px;
  line-height: 36px;
  letter-spacing: .08em;
}

#consultant .viewMore {
  background: #fff;
}

.consultant1 {
  position: absolute;
  width: 246px;
  border-radius: 8px;
  top: 14%;
  left: 53%;
  z-index: 2;
}

.consultant2 {
  position: absolute;
  width: 246px;
  border-radius: 8px;
  transform: translate(107%, 10%);
  top: 14%;
  left: 53%;
  z-index: 2;
}

/* タブレット */
@media (max-width: 1320px) {
  #consultant .container {
    flex-direction: column;
    padding-bottom: 220px;
  }

  .consultant1 {
    width: 20vw;
    top: unset;
    bottom: -20%;
  }

  .consultant2 {
    width: 20vw;
    top: unset;
    bottom: -20%;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #consultant .container {
    padding: 48px 24px;
  }

  #consultant .text {
    font-size: 12px;
    line-height: 20px;
  }

  .consultant1 {
    bottom: -28%;
  }

  .consultant2 {
    bottom: -28%;
  }
}

/*============================================================
gaiyou
============================================================*/
#gaiyou {
  background-image: url("/wp-content/uploads/2025/09/fvgt_.jpg");
  background-size: cover;
  height: 480px;
  margin-bottom: 80px;
}

#gaiyou .container {
  padding: 154px 120px;
}

#gaiyou h3 {
  color: #fff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-size: 40px;
  line-height: normal;
  letter-spacing: 0px;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

#gaiyou p {
	max-width: 705px;
    color: #fff;
    font-size: 20px;
    line-height: 1.8em;
    letter-spacing: 1px;
}

/* タブレット */
@media (max-width: 1320px) {
  .container {
    max-width: 95vw;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #gaiyou {
    height: auto;
    margin-bottom: 48px;
    min-height: 320px;
  }

  #gaiyou .container {
    padding: 48px 24px;
  }

  #gaiyou p {
    font-size: 12px;
    line-height: 20px;
  }
}

/*============================================================
company
============================================================*/
#company {
  position: relative;
  margin-bottom: 105px;
}

#company .container {
  background: #fff;
  padding: 0 120px 0 120px;
  border-radius: 32px 0 0 32px;
}

#company .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  height: 100%;
  width: 100vw;
  background: #fff;
  z-index: -1;
}

#company .sub_title {
  text-align: start;
}

#company .title_wrap {
  display: flex;
  align-items: start;
  gap: 87px;
  border-bottom: 1px solid #D9D9D9;
}

#company .title_wrap p {
  font-size: 20px;
  line-height: 40px;
  letter-spacing: .08em;
}

.concept_wrap {
  padding: 56px 0;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  gap: 64px;
  justify-content: space-between;
}

.concept_wrap:last-child {
  border-bottom: none;
}

.concept_wrap h3 {
  background: linear-gradient(90deg, #0071E3, #A155FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  line-height: normal;
  letter-spacing: 0.05em;
  display: table;
  margin-bottom: 16px;
  font-weight: 500;
}

.concept_wrap {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.08em;
}

.concept_wrap img {
  width: 440px;
  border-radius: 24px;
  max-width: none;
}

/* タブレット */
@media (max-width: 1320px) {
  #company .title_wrap {
    flex-direction: column;
    gap: 24px;
  }

  .concept_wrap {
    flex-direction: column;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #company .container {
    padding: 48px 24px;
  }

  #company .title_wrap {
    gap: 24px;
  }

  #company .title_wrap p {
    font-size: 14px;
    line-height: 22px;
  }

  .concept_wrap {
    font-size: 12px;
    line-height: 20px;
  }

  .concept_wrap img {
    max-width: 100%;
  }
}

/*============================================================
daihyou
============================================================*/
#daihyou {
  position: relative;
  margin-bottom: 167px;
}

#daihyou::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 416px;
  background: linear-gradient(90deg, #0071E3, #A155FF);
  bottom: -144px;
  left: 0;
  z-index: -1;
}

#daihyou .container {
  border-radius: 0 32px 32px 0;
  background-image:
    linear-gradient(to top right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%),
    linear-gradient(to right, #D6EAFF, #C5D8FF);
}

.daihyou_top {
  display: flex;
  margin-bottom: 87px;
  position: relative;
  width: max-content;
}

.daihyou_top img {
    width: 264px;
    margin-left: 100px;}

.daihyou_top h3 {
  font-size: 32px;
  line-height: normal;
  letter-spacing: 0.08em;
  margin-top: 80px;
  margin-left: 80px;
  margin-bottom: 70px;
background: linear-gradient(90deg, #0071E3, #A155FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

section#daihyou .daihyou_top h2 {
  color: #000;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-size: 64px;
  line-height: normal;
  letter-spacing: 0.05em;
  font-weight: 100;
  margin-bottom: 33px;
  margin-left: 87px;
}

.daihyou_top p {
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.05em;
    position: relative;
    margin-left: 290px;
}

.daihyou_top p::before {
  height: 1px;
  width: 183px;
  content: "";
  background: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -199px;
}

.daihyou_message {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  padding: 0 77px 30px;
}

.daihyou_message h4 {
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.daihyou_message p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.08em;
}

.daihyou_message p.mt38 {
  margin-top: 67px;
}

/* タブレット */
@media (max-width: 1320px) {
  .daihyou_top img {
    width: 40vw;
  }

  .daihyou_top h3 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .daihyou_name {
    width: 60vw;
    margin-left: -80px;
    text-wrap: nowrap;
  }
}

/* スマホ */
@media (max-width: 768px) {

  .daihyou_message {
    padding: 24px;
    flex-direction: column;
    gap: 0px;
  }

  .daihyou_top {
    flex-direction: column;
  }

  .daihyou_top img {
    width: 95vw;
    max-width: 100vw;
  }

  .daihyou_name {
    margin-left: 0;
    width: 100%;
    padding: 0 24px;
  }

  section#daihyou .daihyou_top h2 {
    margin-left: 0px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  section#daihyou .daihyou_top h2 br {
    display: none;
  }

  .daihyou_top h3 {
    margin-left: 0;
  }

  .daihyou_top p::before {
    display: none;
  }

  .daihyou_top p {
    margin-left: 0;
    font-size: 14px;
  }

  .daihyou_message p.mt38 {
    margin-top: 0;
  }

  .daihyou_message h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .daihyou_message p {
    font-size: 12px;
    line-height: 20px;
  }

  #daihyou::after {
    bottom: -96px;
  }
}

/*============================================================
business
============================================================*/
#business {
  margin-bottom: 105px;
  background: #fff;
}

#business .container {
  padding: 104px 120px;
}

#business .sub_title {
  text-align: start;
  margin-bottom: 65px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.company-table th {
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  border-bottom: 1px solid #D9D9D9;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.05em;
  padding: 20px 0px 20px 16px;
}

.company-table td {
  padding: 20px 0px;
  border-bottom: 1px solid #D9D9D9;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.company-table td a {
  text-decoration: #6954DE;
  color: #6954DE;
  border-bottom: 1px solid #6954DE;
}

.company-table ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.company-table li {
  padding-left: 1em;
  text-indent: -1em;
}

.company-table li:not(:last-child) {
  margin-bottom: 12px;
}

.company-table li span {
  width: 12px;
  height: 12px;
  content: "";
  background: #7783E3;
  border-radius: 6px;
  margin-right: 8px;
  display: inline-block;
}

/* タブレット */
@media (max-width: 1320px) {
  .container {
    max-width: 95vw;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #business .container {
    padding: 48px 24px;
  }

  .company-table tr {
    display: flex;
    flex-direction: column;
  }

  .company-table th {
    border-bottom: none;
    padding: 20px 0 0px 0;
    font-size: 12px;
    line-height: 20px;
  }

  .company-table td {
    font-size: 12px;
    line-height: 20px;
  }

  .company-table li span {
    width: 6px;
    height: 6px;
    top: 8px;
  }
}

/*============================================================
contact
============================================================*/
#contact {
  position: relative;
  margin-bottom: 147px;
}

#contact .container {
  padding: 104px 120px;
  background: #fff;
  border-radius: 32px 0 0 32px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

#contact .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  height: 100%;
  width: 100vw;
  background: #fff;
  z-index: -1;
}

#contact .sub_title {
  text-align: start;
}

#contact .text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.08em;
  max-width: 460px;
}

.contact-form {
  margin: 31px 0 0;
  width: 540px;
}

.form-group {
  margin-bottom: 40px;
}

label {
  display: inline-flex;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: normal;
  letter-spacing: .08em;
  align-items: center;
}

.badge {
  display: inline-block;
  font-size: 12px;
  line-height: normal;
  letter-spacing: .08em;
  padding: 2px 12px;
  border-radius: 19px;
  margin-right: 12px;
  vertical-align: middle;
  font-weight: 600;
  color: white;
}

.badge.required {
  background: linear-gradient(90deg, #0071E3, #A155FF);
}

.badge.optional {
  background: #A7A7A7;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  line-height: normal;
  letter-spacing: .08em;
  border-radius: 8px;
  background-color: #F6F6F6;
  border: 1px solid #D5D5D5;
}

input::placeholder,
textarea::placeholder {
  color: #9E9E9E;
  opacity: 1;
}

textarea {
  min-height: 100px;
  resize: vertical;
  height: 290px;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group.checkbox label {
  font-size: 14px;
  line-height: normal;
  letter-spacing: .0em;
  font-weight: normal;
}

.form-group.checkbox a {
  color: #6954DE;
  text-decoration: #6954DE;
  border-bottom: 1px solid #6954DE;
  margin-left: 3px;
  line-height: 1;
}

input[type="checkbox"] {
  accent-color: #6954DE;
}

.submit-btn {
  width: 100%;
  padding: 12px 0;
  font-weight: bold;
  color: white;
  background: linear-gradient(to right, #001FB8, #A826AA);
  border-radius: 26px;
  font-size: 18px;
  line-height: normal;
  letter-spacing: .02em;
  border: none;
  color: #fff;
  position: relative;
  max-width: 320px;
  margin: auto;
  display: block;
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-25%, -50%);
  right: 3%;
  border: 6px solid transparent;
  border-left: 7.5px solid #fff;
  box-sizing: border-box;
}

/* タブレット */
@media (max-width: 1320px) {
  #contact .container {
    flex-direction: column;
  }

  .contact-form {
    margin: 31px auto 0;
  }
}

/* スマホ */
@media (max-width: 768px) {
  #contact .container {
    padding: 48px 24px;
  }

  .contact-form {
    max-width: 100%;
  }

  #contact .text {
    font-size: 12px;
    line-height: 20px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 18px;
  }
}

/*============================================================
footer
============================================================*/
footer {
  background: linear-gradient(to right, #0071E3, #A155FF);
  padding: 85px 0 24px;
}

footer .container {
  display: flex;
  gap: 72px;
  border-bottom: 1px solid #fff;
  padding-bottom: 34px;
}

footer .footer_logo {
  width: 35%;
}

footer .footer_logo img {
  height: 48px;
}

.footer_nemu_wrap {
  display: flex;
  flex-direction: column;
  gap: 37px;
}

.footer_nemu_wrap a .footer_button_top {
  align-items: center;
  gap: 16px;
  justify-content: start;
  display: flex;
}

.footer_nemu_wrap h3 {
  font-size: 40px;
  line-height: normal;
  letter-spacing: .05em;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

.footer_nemu_wrap p {
  font-size: 16px;
  line-height: normal;
  letter-spacing: .0em;
  color: #fff;
  margin-left: 56px;
}

.footer_nemu_wrap a {
  text-decoration: none;
}

.footer_nemu_wrap a .icon {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
  box-sizing: border-box;
  background: rgba(255, 255, 255, .5);
}

.footer_nemu_wrap a .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-25%, -50%);
  left: 50%;
  border: 6px solid transparent;
  border-left: 7.5px solid #fff;
  box-sizing: border-box;
}

.copyRight {
  text-align: right;
  max-width: 1320px;
  margin: 24px auto 0;
  color: #fff;
  font-size: 14px;
  line-height: normal;
  letter-spacing: .05em;
  font-family: 'Montserrat', sans-serif;
}

/* タブレット */
@media (max-width: 1320px) {
  footer .container {
    flex-direction: column;
    gap: 37px;
  }

  .footer_nemu_wrap {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .footer_nemu_wrap a {
    min-width: 33%;
  }

  .copyRight {
    width: 95vw;
  }
}

/* スマホ */
@media (max-width: 768px) {
  footer {
    padding: 48px 24px;
  }

  footer .footer_logo img {
    height: 24px;
  }

  .footer_nemu_wrap a .icon {
    width: 20px;
    height: 20px;
  }

  .footer_nemu_wrap a .icon::before {
    border: 4.8px solid transparent;
    border-left: 6px solid #fff;
  }

  .footer_nemu_wrap h3 {
    font-size: 24px;
    line-height: 40px;
  }

  .footer_nemu_wrap p {
    margin-left: 36px;
  }

  .footer_nemu_wrap a {
    min-width: 50%;
  }

  .copyRight {
    width: 100%;
    font-size: 12px;
  }
	
	#about .container::after {
		display:none !important;
	}
	
#news {
    background: beige;
}
	
	#news .container {
        padding: 48px 10px;
        gap: 20px;
    border: none;
}
	
	.blog_main {
	margin-top: 40px;	
	}
	
	#blog .blog_item h4 {
		        font-size: 14px;
        margin-bottom: 10px;
        text-align: justify;
	}
	
.cat-name {
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 11px;
}
	
#blog .blog_item {
    border-radius: 5px;
}
	
	    #blog .blog_item img {
        border-radius: 5px;
    }
	
.form-group label {
  font-size: 14px;
}
	
	.wpcf7-form-control.wpcf7-submit.has-spinner {
		display: flex;
	}
	
}