@charset "UTF-8";
/* CSS Document */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

:root{
  --grd-main:linear-gradient(to right,#FFE200 0%,#FF9318 25%,#FF4752 50%,#FF62B9 75%,#00CDFF 100%);
  --grd-main-title:linear-gradient(110deg,#FFE200 0%,#FF9318 25%,#FF4752 50%,#FF62B9 75%,#00CDFF 100%);
  --grd-bl:linear-gradient(to right,#8F74FF,#00CDFF);
  --grd-gr:linear-gradient(to right,#61F06C,#00CDFF);
  --grd-rd:linear-gradient(to right,#FF9318,#FF4752);
  --line-color:#D1D1D1;
  --color-red:#EE1311;
  --sub-text:#888888;
  --shadow:3px 3px 15px rgba(53 84 88 / 10%);
}

.op0 {
    opacity: 0;
}

.fadeup{
  animation: fadeup 0.6s 1 forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  80%, 100% {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

/* アニメーション定義 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hover-zoom {
  transition: transform 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.05);
}

input[type="text"],
button,
textarea{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

select{
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
    -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist;
}

textarea {
  resize: vertical;
}


input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ol, ul, li
{
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

body {
 	line-height:1.75em;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
  color:#222222;
}

p{
  color:#444444;
}

@media screen and (max-width:767px){
  p{
    font-size: 14px;
  } 
}

strong{
  color:#222222;
}

ul {
  list-style:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  color:#444444;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
   font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

img{
	max-width: 100%;
}

*{
  box-sizing: border-box;
}

/*===========
common
===========*/
.section_setting_case01{
  padding: 130px 0 140px;
}

.section_setting_case02{
  padding: 130px 0;
}

.section-box{
  display: grid;
  flex-wrap: wrap;
  gap:60px;
}

.background_case_image{
  background-image: url("../images/main_bg.svg");
}

.background_case_gray{
  background-color: #F7F7F7;
}

.content_w1100{
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.content-title[data-case="01"]{
  text-align: center;
}

.content-title[data-case="01"] small{
  font-size: 18px;
  display: block;
  font-weight: normal;
}

.content-title[data-case="02"]{
  display: flex;
  align-items: flex-end;
}

.content-title[data-case="02"] small{
  font-size: 18px;
  display: block;
  font-weight: normal;
  margin-left: 30px;
}

.content-title[data-case="02"].white-color small{
  color:#ffffff;
}

@media screen and (max-width:900px){
  .content-title[data-case="02"]{
    display: block;
  }
  
  .content-title[data-case="02"] small{
    margin-left: 0;
    margin-top: 15px;
  }

}

@media screen and (max-width:767px){
  .section_setting_case01{
    padding: 60px 0;
  }

  .section_setting_case02{
    padding: 60px 0;
  }

  .section-box{
    gap:60px;
  }  
  
  .content-title[data-case="01"] small,
  .content-title[data-case="02"] small{
    font-size: 16px;
  }
}

/*===========
header
===========*/
  .mainHead{
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    padding: 24px 30px;
    position: fixed;
    width: 100%;
    left: 0;
    top:0;
  }
  
  .mainHead.fixed_head{
    background: #ffffff;
    box-shadow: var(--shadow);
  } 
  
@media screen and (min-width:1151px){

  .header_content{
    display: flex;
  }
  
  .header_content .nav{
    padding:0 50px;
    height: 50px;
    margin-right: 15px;
    column-gap: 40px;
    display: flex !important;
    align-items: center;
    background: #ffffff;
    box-shadow: var(--shadow);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
  }
  
}
  
  .btnWrap{
    display: flex;
    align-items: center;
    column-gap: 16px;
  }
  
  .btnWrap .btn{
    transition: 0.5s;
    height: 50px;
    position: relative;
    padding-right: 20px;
    border-radius: 100px;
    border:1px solid #222222;
    background: #ffffff;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    font-weight: bold;
  }
  
  .btnWrap .btn:nth-child(2){
    color:#ffffff;
    border:1px solid #222222;
    background: #222222;
  }
  
  .btnWrap .btn img{
    position: absolute;
    right: 20px;
    top:calc(50% - 5px);
  }
  
  .header_btn.btnWrap{
    column-gap: 10px;
  }
  
  .header_btn .btn{
    width: 210px;
  }

@media screen and (max-width:1150px){
  .wrapper{
    width: 100vw;
    overflow-x: hidden;
  }
  
  /* main */
  .mainHead{
    position: fixed;
    z-index: 1000;
  } 
  
.mainHead {
    left:0;
    width: 100%;
    align-items: center;
    height: auto;
    padding: 10px;
    z-index: 1000;
  padding-right: calc(5% + 40px);
}  
  
  .logo{
    width: 158px;
    position: relative;
    top:0;
    left: 5%;
  }
  
  
  /* ハンバーガーボタン基本 */
.hamburger {
  display: inline-block;
  cursor: pointer;
  width: 20px;
  height: 15px;
  border: none;
  background: none;
  z-index: 1001; /* ナビより上 */
  position: absolute;
  right: 5%;
  top: 25px;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  left: 0;
  transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 16px;
}

/* open時のハンバーガーを「×」に変形 */
.mainHead.open .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.mainHead.open .hamburger span:nth-child(2) {
  opacity: 0;
}
.mainHead.open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}
/* ナビ（モバイル）初期状態：非表示 */
.nav {
  position: absolute;
  width: 250px;
  height: 100dvh;
  right: -100%;
  transition: 0.5s;
  padding-top: 80px;
  background: var(--grd-main-title);
  top:0;
  z-index: 100;
  font-weight: bold;
}
  
.nav a{
  color:#ffffff;
}
  
  .open .nav{
    right: 0;
  }
  
.nav li{
  padding-top: 30px;
  text-align: center;
  }
.mainHead .nav {
  background-color: #ffffff;
}
  
}

@media screen and (max-width:767px){
  .header_btn.btnWrap {
    column-gap: 5px;
  }
  
  .header_btn .btn{
    width: 100px;
    font-size: 8px;
    height: 30px;
    padding-right: 0px;
  }
  
  .header_btn .btn img{
    width: 3px;
    right: 5px;
    top:calc(50% - 2px);
  }
  
  .mainHead {
    padding-right: calc(5% + 30px);
  }
  
  .logo img{
    width: 80px;
  }
  
  .hamburger {
    top: 20px;
  }
  
}


/*===========
main-visual
===========*/
.main-visual__content{
  background: url("../images/main_image.webp") center;
  background-size: cover;
  height: 100dvh;
  display: flex;
  align-items: center;
  min-height: 770px;
}

  .main-visual__inner{
    padding:0 80px;
  }
  
  .main-visual__title{
    font-weight: bold;
    font-size: 46px;
    line-height: 1.75em;
    margin-bottom: 28px;
  }
  
  .main-visual__text{
    font-size: 18px;
    margin-bottom: 54px;
  }
  
  .main-visual__topic{
    background:#F7F7F7;
    padding:40px 0;
  }
  
  .main-visual__topic-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .main-visual__topic-list li{
    background: #ffffff;
    height: 140px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .main-visual__topic-list li:before{
    content:" ";
    background: var(--grd-rd);
    height: 8px;
    width: 100%;
    top:0;
    display: block;
    position: absolute;
  }
  
  .main-visual__topic-list-text{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .main-visual__topic-list-title{
    font-size: 25px;
    font-weight: bold;
  }
  
  .main-visual__topic-list-title span{
    font-size: 37px;
  }

.sp{
  display: none;
}

@media screen and (max-width:767px){
.sp{
  display: block;
}
  
  .main-visual__content {
    background-position: top center;
    background-size: 150%;
    background-repeat: no-repeat;
    min-height: inherit;
    width: 100%;
  }
  
  .main-visual__inner {
    padding: 0 5%;
  }
  
  .main-visual__title {
    font-size: 5.5vw;
  }
  
  .main-visual__text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .main-visual__content .btnWrap{
    flex-wrap: wrap;
    gap:20px;
  }
  
  
  .main-visual__content  .btn {
    font-size: 11px;
    width: 180px;
}
  
.main-visual__topic-list{
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap:10px;
} 
  
.main-visual__topic-list li {
    height: 100px;
}  
  
.main-visual__topic-list-text {
    font-size: 14px;
}
  
.main-visual__topic-list-title{
    font-size: 18px;
}  
  
.main-visual__topic-list-title span {
    font-size: 25px;
}
  
  
  
}

/*===========
massege
===========*/
  .massage__heading{
    text-align: center;
  }
  
  .massage__heading-title{
    font-size: 49px;
    margin-bottom: 35px;
    line-height: calc(79em / 49em);
  }
  
  .massage__list{
    display: grid;
    gap:30px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .massage__list li{
    padding: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }
  
  .massage__list-img{
    text-align: center;
    margin-bottom: 18px;
  }
  
  .massage__list-title{
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
  }

  .massage__lead{
    text-align: center;
  }
  
  .massage__lead-title span{
    margin-bottom: 10px;
    display: inline-block;
    background: var(--grd-main);
    color:#ffffff;
    font-weight: bold;
    font-size:40px;
    padding: 8px 30px;
    line-height: calc(66em / 40em);
  }

@media screen and (max-width:900px){
  .massage__list{
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }
}

@media screen and (max-width:767px){
  .massage__list{
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  
  .massage .content-title img{
      aspect-ratio: 377 / 77;
      width: 70%;
  }
  
  .massage__heading-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .massage_heading-text{
    text-align: left;
  }
  
  .massage__lead-title span {
    display: block;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .massage__lead-text{
    font-size: 14px;
  }


}

/*===========
service
===========*/
  .service{
    background:#F7F7F7;
    border-radius: 120px 120px 0 0;
  }
  
  .service__content-title{
    font-size: 26px;
    font-weight:bold;
    padding-left: 40px;
    position: relative;
    margin-bottom: 14px;
  }
  
  .service__content-title:before{
    content: " ";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100px;
    position: absolute;
    top:0;
    left: 0;
  }
  
  .service__content-title[data-case="01"]:before{
    background: var(--grd-gr);
  }
  
  .service__content-title[data-case="02"]:before{
    background: var(--grd-rd);
  }
  
  .service__content-title[data-case="03"]:before{
    background: var(--grd-bl);
  }  
  
  .service__list{
    margin-top:30px;
    display: grid;
    gap:30px;
    grid-template-columns: repeat(3,1fr);
  }
  
  .service__list li{
    padding: 25px;
    position: relative;
    border-radius: 5px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .service__list li[data-class="icon"]:before{
    content:"独自サービス";
    display: block;
    border-radius: 5px 0 5px 0;
    background: var(--grd-rd);
    position: absolute;
    top:0;
    left: 0;
    font-size: 13px;
    font-weight: bold;
    color:#ffffff;
    padding: 5px 15px;
  }
  
  .service__list-img{
    text-align: center;
  }
  
  .service__list-title{
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
  }

  .service__list-btn{
    text-align: center;
    margin-top: 20px;
  }

  .service__list-btn .btn{
    transition: 0.5s;
    height: 45px;
    position: relative;
    padding-right: 20px;
    border-radius: 100px;
    border:1px solid #222222;
    background: #ffffff;
    font-size: 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    font-weight: bold;
  }

  .service__list-btn .btn img{
    position: absolute;
    right: 20px;
    top:calc(50% - 5px);
  }

@media screen and (max-width:900px){
  .service__list{
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media screen and (max-width:767px){
  .service {
    border-radius: 60px 60px 0 0;
  }
  
  .service .content-title img{
    width: 65%;
  }
  
}

/*===========
benefits
===========*/
  .benefits__block{
    display: grid;
    grid-template-columns: 390px 1fr;
    column-gap: 40px;
    align-items: center;
  }
  
  .benefits__block-title{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: calc(45em / 30em);
  }

@media screen and (max-width:900px){
  .benefits__block{
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }
  
  .benefits__block-title,
  .benefits__block-img{
    text-align: center;
  }
  
}

@media screen and (max-width:767px){
  .benefits .content-title img{
    width: 65%;
  }
  
  .benefits__block{
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  
  .benefits__block-title {
    font-size: 20px;
  }
  
  
}

/*===========
cases
===========*/

  .cases{
    background: linear-gradient(to bottom,rgba(0,0,0,0) 250px,#F7F7F7 250px 100%);
    position: relative;
  }
  
  .cases .section-box{
    position: relative;
    z-index: 3;
  }
  
  .cases:before{
    content:" ";
    background: var(--grd-main-title);
    z-index: 0;
    position: absolute;
    width: calc(100% - 80px);
    height: 500px;
    right: 0;
    top:0;
    display: block;
    min-width:1200px;
    border-radius: 120px 0 0 120px;
  }
  
  .cases__list{
    display: grid;
    gap:40px;
  }
  
  .cases__list li{
    padding: 30px 40px 40px;
    background: #ffffff;
    border-radius:20px;
    box-shadow:var(--shadow);
  }
  
  .cases__list-category{
    position: relative;
    margin-bottom: 30px;
  }
  
  .cases__list-category span{
    padding: 10px 0;
    font-weight: bold;
    font-weight: 18px;
    line-height: calc(45em / 18em);
    position: relative;
    z-index: 3;
    display: inline-block;
    color:#ffffff;
    padding-right: 50px;
    background: #222222;
    border-radius: 0 100px 100px 0;
  }
  
  .cases__list-category:after{
    content: " ";
    width: 40px;
    position: absolute;
    background: #222222;
    height: 100%;
    left: -40px;
    top:0;
    z-index: 0;
  }
  
  .cases__list-heading{
    display: grid;
    grid-template-columns: 70px 1fr;
    gap:15px;
    margin-bottom: 15px;
    align-items: center;
  }
  
  .cases__list-lead{
    font-size: 18px;
  }
  
  .cases__list-title{
    font-size: 28px;
    line-height: calc(52em / 30em);
    font-weight: bold;
  }

  .cases__list-results span{
    display: inline-block;
    margin-top:20px;
    padding: 5px 20px;
    border:#EE1311 1px solid;
    color:#EE1311;
    font-size: 22px;
    font-weight: bold;
  }

  .cases__other-result{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
  }
  
  .cases__other-box:not(:last-child){
    border-right: 1px solid var(--line-color);
  }
  
  .cases__other-text{
    font-size: 24px;
    font-weight: 500;
    line-height: calc(30em / 24em);
    margin-bottom: 10px;
  }
  
  .cases__other-title{
    color:#EE1311;
    font-size: 32px;
    font-weight: bold;
  }
  
  .cases__other-title span{
    font-size: 44px;
  }

@media screen and (max-width:767px){
  .cases .content-title img{
    width: 55%;
  }
  
  .cases__list li {
    padding: 20px;
  }
  
  .cases__list-category:after {
    width: 21px;
    left: -20px;
    top: 0;
  }
  
  .cases__list-heading {
    display: block;
  }
  
  .cases__list-img{
    text-align: center;
  }
  
  .cases__list-title {
    font-size: 18px;
  }
  
  .cases__list-lead {
    font-size: 14px;
  }
  
  .cases__list-results span {
    font-size: 16px;
  }
  
  .cases__other-result {
    display: block;
  }
  
  .cases__other-box{
    padding: 30px 0;
  }
  
  .cases__other-box:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--line-color);
  }
  
}

/*===========
news
===========*/
  .news__list{
    display: grid;
    gap:25px;
  }
  
.news__list li {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 30px;
  border-radius: 5px;
  border:1px solid var(--line-color);
  position: relative;
}

.news__list a{
  transition: 0.5s;
}

.news__list a:hover{
  opacity: 0.7;
}

.news__list li.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
  
  .news__list-category{
    position: absolute;
    top:0;
    right: 0;
    color:#ffffff;
    font-weight: bold;
    font-size: 16px;
  }
  
  .news__list-category:before{
    content:attr(data-category-name);
    padding:6px 20px;
    display: block;
    border-radius: 0 5px 0 5px;
  } 
  
  .news__list-category[data-category-name="キャンペーン"]:before{
    background: linear-gradient(to bottom,#FF9318,#FF4752);
  }   
  
  .news__list-category[data-category-name="実績"]:before{
    background: linear-gradient(to bottom,#8F74FF,#00CDFF);
  }    
  
  .news__list-category[data-category-name="セミナー"]:before{
    background: linear-gradient(to bottom,#61F06C,#00CDFF);
  }    
  
  .news__list-date{
    font-size:13px;
    color:#888888;
    display:flex;
    align-items: center;
  }  
  
  .news__list-date span{
    font-size:11px;
    display: inline-block;
    padding: 2px 5px;
    border:#EE1311 1px solid;
    border-radius: 2px;
    color:#EE1311;
    font-weight: 500;
    margin-left: 8px;
    line-height: 1em;
  } 
  
  .news__list-title{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
  }

.news__more {
  margin-top: 40px;
  text-align: center;
  cursor: pointer;
}
  
.news__more span{
  display: inline-flex;
  height: 50px;
  width: 100%;
  max-width: 290px;
  align-items: center;
  justify-content: center;
  color:#222222;
  border:1px solid #222222;
  position: relative;
  font-weight: bold;
  border-radius: 100px;
  padding-right: 20px;
}
  
.news__more span img{
  position: absolute;
  top:calc(50% - 6px);
  right: 10px;
}  
  
.news__more:hover {
  opacity: 0.7;
}

@media screen and (max-width:767px){
  .news .content-title img{
    width: 45%;
  } 
  
  .news__list li{
    padding:30px 10px;
  }
  
  .news__list-title {
    font-size: 16px;
  }
  
  .news__list-category {
    font-size: 12px;
  }
  
  .news__list-category:before {
    padding: 4px 10px;
  }
  
}

/*===========

conversion-area

===========*/
  .conversion-area{
    background: var(--grd-main);
    padding: 85px 0;
  }

  .conversion-area .content_w1100{
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow);  
    padding: 70px 110px;
    text-align: center;
  }

  .conversion-area__title{
    font-size:43px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: calc(59em / 43em);
  }
  
  .conversion-area__text{
    font-size:22px;
    margin-bottom: 40px;
    font-weight: bold;
  }
  
  .conversion-area__btn.btnWrap{
    justify-content: center;
    column-gap: 20px;
  }
  
  .conversion-area__btn .btn{
    width: 335px;
    height: 70px;
    font-size: 20px;
  }
  
  .conversion-area__btn .btn img{
    top:calc(50% - 8px);
  }

@media screen and (max-width:900px){
  .conversion-area .content_w1100{
    padding: 70px 30px;
  }
}
  

@media screen and (max-width:767px){
  .conversion-area .content_w1100{
    padding: 40px 10px;
  }
  
  .conversion-area__title {
      font-size: 23px;
  }
  
  .conversion-area__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .conversion-area__btn.btnWrap {
    column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .conversion-area__btn .btn {
    width: 100%;
    height: 40px;
    font-size: 10px;
  }
  
  .conversion-area__btn .btn img{
    width: 5px;
    top: calc(50% - 4px);
  }
  
}


/*===========
about_us
===========*/
  .about_us__block{
    display: grid;
    gap:40px;
    grid-template-columns: 437px 1fr;
  }
  
  .about_us__title{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
  }
  
  .about_us__table{
    width: 100%;
    border-top: 1px solid var(--line-color);
    margin-top: 30px;
  }
  
  .about_us__table th{
    width: 140px;
    border-bottom: 1px solid var(--line-color);
    font-weight: 500;
    padding: 25px 0;
    vertical-align: top;
    font-size: 16px;
    text-align: left;
  }
  
  .about_us__table td{
    width: calc(100% - 140px);
    border-bottom: 1px solid var(--line-color);
    font-weight: normal;
    padding: 25px 0;
    vertical-align: top;
    font-size: 16px;
  }

@media screen and (max-width:1000px){
  .about_us__block{
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }
  
  .about_us__img{
    text-align: center;
  }

}


@media screen and (max-width:767px){
  .about_us .content-title img{
    width: 65%;
  }
  
  .about_us__block{
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  
  .about_us__table th {
    width: 100px;
    padding: 15px 0;
    font-size: 14px;
  }  
  
  .about_us__table td {
    width: calc(100% - 100px);
    padding: 15px 0;
    font-size: 14px;
  }
  
}




/*===========
footer
===========*/
  .main-footer{
    background: #222222;
    padding: 100px 80px 40px;
    color:#ffffff;
  }
  
@media screen and (max-width:900px){
  .main-footer{
    padding-left: 5%;
    padding-right: 5%;
  }
}
  .main-footer *{
    color:#ffffff;
  }
  
  .main-footer__block{
    display:flex;
    justify-content: space-between;
  }
  
  .main-footer__nav-box{
    display: flex;
    gap:60px;
  }
  
  .main-footer__nav-box ul{
    font-size: 14px;
    display: grid;
    gap:10px;
  }
  
  .main-footer__copy{
    text-align: center;
    margin-top: 110px;
    font-size: 11px;
  }

@media screen and (max-width:1000px){
  .main-footer__block{
    display: block;
  }
  
  .main-footer__nav-box{
    margin-top: 40px;
  }
}

@media screen and (max-width:767px){
  .main-footer{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .main-footer__text{
    font-size: 12px;
  }
  
  .main-footer__nav-box {
    display: grid;
    gap: 10px;
  }
  
}

@media screen and (max-width:480px){
footer a[href^="tel"],
footer a[href^="mailto"],
footer a[href^="sms"] {
  text-decoration: none !important;
  color: inherit !important;
  pointer-events: none;
  cursor: default;
}  
    
}