@charset "UTF-8";
/* TOP画像------------------------------------------------- */
.top_image {
    height: 321px;
}
.TOP_animation {
    height: 500px;
}
.slider_box img{
    object-fit: contain;
    width: 100%;
    position: absolute;
    z-index: 999;
    top: unset;
    object-position: 15%;
}
.top_title{
    line-height: 3.8rem;
}
/* ---------------------------------------------------------- */
.skills_wrapper{
    width: 80%;
    margin: 0 auto 100px;
    display: block;
    color: #fff;
    background: linear-gradient(90deg, #E1577F, #F8CAAB);
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 28px;
    font-weight: bold;
}
.skills_top_text{
    width: 60%;
    margin: 70px auto 100px;
    color: #535353;
    line-height: 3rem;
}

.group_01{
    margin-right: 10%;
}
.group_01_inner{
    display: flex;
    margin-bottom: 150px;
}
.image_01{
    width: 40%;
}
.image_01 img{
    width: auto;
    height: 424px;
    border-radius: 0 50px 50px 0;
    position: relative;
    max-width: none;
}
.group_01_detail{
    width: 60%;
    padding-left: 150px;
}
.catch{
    display: flex;
}
.catch img{
    width: 10%;
    object-fit: contain;
}
.catch_title{
    color: #E1577F;
    font-size: 30px;
    font-weight: bold;
    margin-left: 30px;
}

.content_title{
    color: #E1577F;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
.short_border{
    width: 5%;
    border-top: 6px solid #E1577F;
    border-right: none;
    border-bottom: none;
    border-left: none;
    margin: 10px auto 60px;
}
.text_01{
    width: 60%;
    margin: 0 auto;
}
.image_02{
    width: 80%;
    display: block;
    margin: 100px auto 200px;
}
.image_05{
  width: 80%;
  display: block;
  margin: 100px auto 200px;
}
.speechBubble {
    position: relative;
    display: inline-block;
    padding: 16px;
    border-radius: 8px;
    background-color: rgba(225, 87, 127, .13);
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    color: #e1577f;
    margin: 0 auto 50px;
    width: 50%;
    display: block;
  }
  .speechBubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: rgba(225, 87, 127, .13) transparent transparent;
    translate: -50% 100%;
  }
  .text_02{
    text-align: center;
    font-size: 15px;
    color: #535353;
  }
  .marker{
    background: linear-gradient(transparent 60%, #FFEFB9);
  }



  .living_ul {
    padding: 0;
    width: 50%;
    margin: 0 auto 200px;
}
.living_ul tr {
    font-size: 18px;
    border-bottom: 1px solid #E1577F;
    color: #818181;
}
.living_ul td {
  line-height: 2.8rem;
  padding-bottom: 20px;
  padding-top: 20px;
  vertical-align: top;
  padding-right: 10px;
}
.living_ul td {
  line-height: 2.8rem;
  padding-bottom: 20px;
  padding-top: 20px;
}


  .skills_ul{
    padding: 0;
    width: 50%;
    margin: 0 auto 200px;
  }
  .skills_ul li{
    list-style: none;
    list-style: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E1577F;
    padding: 10px;
  }
  .list_style{
    color: #E1577F;
    font-size: 30px;
    margin-right: 10px;
  }
  .image_03{
    width: 40%;
  }
 .image_03 img{
    width: auto;
    height: 424px;
    border-radius: 0 50px 50px 0;
    position: relative;
    left: -180px;
    max-width: none;
    z-index: 999;
 }
 .image_03_catch_title{
    width: 80%;
 }
 .group_01_detail hr{
    color: #C1C1C1;
    position: relative;
    left: -50px;
    width: 108%;
 }
 .group_01_detail_text{
    font-size: 14px;
    color: #535353;
 }
 .business_content{
    background-color: rgba(225, 87, 127, .13);
    padding: 10px;
    margin: 20px 0;
    font-size: 14px;
 }
 .business_content p{
    margin: 0;
 }
 .business_content_title{
    color: #E1577F;
    font-size: 14px;
 }
 .business_content_detail{
    color:  #535353;
 }
.pdf{
    display: flex;
    align-items: center;
    color:  #535353;
}
.pdf img{
    width: 7%;
    margin-right: 10px;
}
/* リンクのデフォルトスタイルを無効化し、下線を追加する */
.group_01_inner a {
    color: #FF0000; /* 文字色 */
    display: inline-block; /* これがないとリンク範囲が全幅になる */
    position: relative; /* 相対位置指定 */
    text-decoration: none; /* デフォルトのテキストの下線を消す */
  }
  /* 下線のスタイル */
  .group_01_inner a::after {
    background-color: #FF0000; /* 下線の色 */
    bottom: 2px; /* 要素の下端からの距離 */
    content: ""; /* 要素に内容を追加 */
    height: 2px; /* 下線の高さ */
    left: 0; /* 要素の左端からの距離 */
    opacity: 0; /* 不透明度 */
    position: absolute; /* 絶対位置指定 */
    transition: all .3s; /* アニメーション効果を追加 */
    width: 100%; /* 要素の幅 */
  }
  /* リンクにホバーした際の下線の表示 */
  .group_01_inner a:hover::after {
    bottom: -4px; /* 下線を上から下に移動 */
    opacity: 1; /* 不透明度を変更してフェードイン */
  }
/* スライダー全体 */
.slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
  }
  /* スライド3枚のグループ */
  .slider__ {
    animation: scroll-left 40s infinite linear .5s both;
    display: flex; /* スライド3枚を横並び */
    padding: 0;
  }
  .slider__2 {
    animation: scroll-right 40s infinite linear .5s both;
    display: flex; /* スライド3枚を横並び */
    padding: 0;
  }
  /* スライド */
  .slide {
    width: calc(100vw / 6); /* 3はスライドの枚数 */
    list-style: none;
    margin-right: 15px;
  }
  /* スライドの画像 */
  .slide img {
    display: block;
  }
  /* CSSアニメーション */
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @keyframes scroll-right {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  
  .map{
    width: 85%;
    display: block;
    margin: 100px auto;
    height: 450px;
  }
  @media screen and (max-width:767px) {
  .slider_inner {
    display: block;
    flex-direction: unset;
  }
  .top_title {
    font-size: 18px;
    line-height: 2rem;
  }
  .image_01 {
    width: 100%;
    margin-bottom: 20px;
}
  .skills_wrapper {
    width: 70%;
    text-align: center;
    font-size: 18px;
    margin-top: 100px;
  }
  .skills_top_text{
    width: 80%;
  }
  .group_01_inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .group_01_inner{
    display: block;
  }
  .group_01_detail {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding-left: 0;
  }
  .catch {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
  }
  .catch img {
    width: 20%;
  }
  .catch_title {
    font-size: 18px;
  }
  .image_01 img {
    width: 120%;
    height: auto;
    left: -150px;
    max-width: none;
  }
  .group_01_detail p{
    width: 80%;
    margin: 0 auto;
  }
  .content_title{
    font-size: 17px;
    padding-top: 20px;
  }
  .short_border {
    width: 10%;
  }
  .s_image{
    width: 100%;
  }
/* .image_02{
  width: 170%;
  max-width: unset;
} */
  .table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 0 10px;
  }
  .image_02 {
    table-layout: fixed;
    border-collapse: collapse;
    width: 200%;
    min-width: 500px;
    max-width: unset;
    margin: 100px auto 20px;
  }
  .image_05 {
    table-layout: fixed;
    border-collapse: collapse;
    width: 200%;
    min-width: 500px;
    max-width: unset;
    margin: 100px auto 20px;
  }
  .speechBubble{
    font-size: 16px;
    width: 75%;
    margin: 50px auto;
  }
  .text_02{
    width: 90%;
    margin: 0 auto;
  }
  .living_ul{
    width: 90%;
    margin: 0 auto 100px;
  }
  .group_01{
    margin-right: unset;
  }
  .image_03{
    width: 100%;
    margin-bottom: 20px;
  }
  .image_03 img{
    width: 120%;
    height: auto;
    left: -150px;
    max-width: none;
  }
  .image_03_catch_title{
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
  }
  .business_content{
    width: 90%;
    margin: 20px auto;
  }
  .group_01_inner a{
    width: 90%;
    display: block;
    margin: 0 auto;
    line-height: 2rem;
  }
  .pdf{
    width: 80%;
    margin: 0 auto;
  }
  .m_reg{
    margin-bottom: 50px;
  }
  .slide {
    width: calc(100vw / 3);
  }
  .map {
    width: 80%;
    height: 150px;
  } 
  .text_01 {
    width: 80%;
  }
}
@media screen and (min-width:768px) {
    
    
}

/*# sourceMappingURL=map/style-top.css.map */